diff options
| author | 2026-03-09 11:00:05 -0400 | |
|---|---|---|
| committer | 2026-03-09 11:00:05 -0400 | |
| commit | ad7fa1d830027504a4abdaddb62a21bbb92da4a4 (patch) | |
| tree | c410c4810391a943e83717a75bb19a9d53586bef /tests/run.scm | |
| parent | fix new lazy implementation (diff) | |
reorganize tests, use dead-simple test harness
Diffstat (limited to '')
| -rw-r--r-- | tests/run.scm | 16 |
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)))) |
