Add cond-expand for memory streams

This commit is contained in:
Justin Ethier 2023-12-17 19:11:55 -08:00
parent 334787b6d6
commit 1d775c5a75

View file

@ -30,6 +30,8 @@
(test '() (make-list -2)) (test '() (make-list -2))
) )
(cond-expand
(memory streams
(test-group (test-group
"I/O" "I/O"
(define p (open-input-string "one\ntwo\n")) (define p (open-input-string "one\ntwo\n"))
@ -43,6 +45,8 @@
(test #\w (read-char p)) (test #\w (read-char p))
(test "o" (read-line p)) (test "o" (read-line p))
) )
)
)
(test-group (test-group
"rationals" "rationals"