aboutsummaryrefslogtreecommitdiffstats
path: root/tests/run.scm
diff options
context:
space:
mode:
authorGravatar Peter McGoron 2026-03-08 23:31:08 -0400
committerGravatar Peter McGoron 2026-03-08 23:31:08 -0400
commit190cc4453747ea84b6f5295bd0fee82a1a9f3777 (patch)
tree4a84da4b25d8a409b72a0a38d9c949f80d384d7b /tests/run.scm
parentfirst attempt at moving over to SRFI-259 (diff)
hascheme using its own delay-force impl
Diffstat (limited to '')
-rw-r--r--tests/run.scm8
1 files changed, 2 insertions, 6 deletions
diff --git a/tests/run.scm b/tests/run.scm
index 8933e00..1036295 100644
--- a/tests/run.scm
+++ b/tests/run.scm
@@ -1,18 +1,14 @@
(cond-expand
- (chicken-5 (import r7rs (srfi 64))
+ (chicken-6 (import (test))
(load "../lib/tests/hascheme/base.sld"))
(chibi (import (chibi test)))
(else (import (srfi 64))))
-(cond-expand
- (chicken-5 (test-runner-current (test-runner-create)))
- (else))
-
(import (scheme process-context) (tests hascheme base))
(test-group "base" (test-base))
(cond-expand
- (chibi (test-exit))
+ ((or chibi chicken-6) (test-exit))
(else (exit (if (zero? (test-runner-fail-count (test-runner-current)))
0
1))))