aboutsummaryrefslogtreecommitdiffstats
path: root/tests/run.scm
diff options
context:
space:
mode:
authorGravatar Peter McGoron 2026-03-09 11:00:05 -0400
committerGravatar Peter McGoron 2026-03-09 11:00:05 -0400
commitad7fa1d830027504a4abdaddb62a21bbb92da4a4 (patch)
treec410c4810391a943e83717a75bb19a9d53586bef /tests/run.scm
parentfix new lazy implementation (diff)
reorganize tests, use dead-simple test harness
Diffstat (limited to '')
-rw-r--r--tests/run.scm16
1 files changed, 6 insertions, 10 deletions
diff --git a/tests/run.scm b/tests/run.scm
index 1036295..20023f3 100644
--- a/tests/run.scm
+++ b/tests/run.scm
@@ -1,15 +1,11 @@
(cond-expand
- (chicken-6 (import (test))
- (load "../lib/tests/hascheme/base.sld"))
- (chibi (import (chibi test)))
- (else (import (srfi 64))))
+ (chicken-6 (load "../lib/tests/hascheme/kiss-test.sld")
+ (load "../lib/tests/hascheme/base.sld"))
+ (else))
-(import (scheme process-context) (tests hascheme base))
+(import (scheme process-context) (tests hascheme base)
+ (tests hascheme kiss-test))
(test-group "base" (test-base))
+(test-exit)
-(cond-expand
- ((or chibi chicken-6) (test-exit))
- (else (exit (if (zero? (test-runner-fail-count (test-runner-current)))
- 0
- 1))))