1
0
mirror of synced 2026-05-03 06:39:40 +00:00
Files
Interlisp.medley/internal/test/LANGUAGE/AUTO/AR8136.TEST

13 lines
405 B
Plaintext

;; AR 8136 test
;; Filed as {ERIS}<LISPCORE>TEST>CMLSTREAMS>AR8136.TEST
;; By Peter Reidy
;; Verify that a concatenated stream is readable even when the first ends with whitespace.
(do-test-group AR8136
:before (test-setq
stream1 (make-string-input-stream "(= 6 (+ 3 3) ")
stream2 (make-string-input-stream ")")
)
(do-test AR8136
(eval (read (make-concatenated-stream stream1 stream2)))
)
)