aboutsummaryrefslogtreecommitdiffstats
path: root/lib/tests
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 /lib/tests
parentfirst attempt at moving over to SRFI-259 (diff)
hascheme using its own delay-force impl
Diffstat (limited to 'lib/tests')
-rw-r--r--lib/tests/hascheme/base.sld4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/tests/hascheme/base.sld b/lib/tests/hascheme/base.sld
index 1be93b4..129904b 100644
--- a/lib/tests/hascheme/base.sld
+++ b/lib/tests/hascheme/base.sld
@@ -4,7 +4,9 @@
(hascheme support)
(prefix (hascheme base) h:))
(cond-expand
- (chicken (import (srfi 64) (chicken condition)))
+ (chicken-5 (import (srfi 64) (chicken condition)))
+ (chicken-6 (import (except (test) test test-equal)
+ (rename (only (test) test) (test test-equal))))
(chibi (import (except (chibi test) test test-equal)
(rename (only (chibi test) test) (test test-equal))))
(else (import (srfi 64))))