~ chicken-core (chicken-5) f546cae9ea4d220d22a47c99061bd1f7bda0fe08
commit f546cae9ea4d220d22a47c99061bd1f7bda0fe08 Author: felix <felix@call-with-current-continuation.org> AuthorDate: Wed May 6 11:43:27 2020 +0200 Commit: felix <felix@call-with-current-continuation.org> CommitDate: Wed May 6 11:43:27 2020 +0200 fix types.db-consistency test to handle 'deprecated and add missing import diff --git a/tests/types-db-consistency.scm b/tests/types-db-consistency.scm index 5f1a255b..0f637694 100644 --- a/tests/types-db-consistency.scm +++ b/tests/types-db-consistency.scm @@ -8,6 +8,7 @@ (chicken irregex) (chicken memory) (chicken port) + (chicken format) (chicken process-context) (chicken process-context posix) (chicken tcp) @@ -52,6 +53,7 @@ ((symbol) symbol?) ((input-port) input-port?) ((output-port) output-port?) + ((deprecated) (constantly #t)) (else (unknown sym)))) (define (run-checks file checker)Trap