;;;; setup-helper tests/run.scm -*- Hen -*- ;;;; Kon Lovett, Oct '17 (use test) (use setup-helper-mod) (test-assert (string? *chicken-version*)) (test-assert (string? *chicken-library-version*)) (test-assert (list? (default-static-install-options))) (test-assert (list? (default-shared-install-options))) (test-assert (list? (default-static-module-install-options))) (test-assert (list? (default-shared-module-install-options))) (test-assert (list? (default-shared+static-module-install-options))) (test-assert (list? (default-static-compile-options))) (test-assert (list? (default-shared-compile-options))) (test-assert (list? (default-import-compile-options))) (test-exit)