2 Commits

Author SHA1 Message Date
3c6d7a783a Require gray-streams for ABCL in tests 2023-11-26 23:22:19 +01:00
3b030998ba Shadow stream-element-type in tests for ecl 2023-11-26 23:22:19 +01:00
2 changed files with 3 additions and 1 deletions

View File

@ -37,6 +37,8 @@
#-(or sbcl allegro cmu clisp openmcl lispworks ecl clasp abcl mocl genera mezzano) ... #-(or sbcl allegro cmu clisp openmcl lispworks ecl clasp abcl mocl genera mezzano) ...
#:fundamental-binary-input-stream #:fundamental-binary-output-stream #:fundamental-binary-input-stream #:fundamental-binary-output-stream
#:stream-read-byte #:stream-write-byte) #:stream-read-byte #:stream-write-byte)
#+ecl
(:shadowing-import-from :gray #:stream-element-type)
(:export (:export
#:perform-all-tests #:perform-all-tests
#:perform-deflate-tests #:perform-deflate-tests

View File

@ -40,6 +40,6 @@
:in-order-to ((test-op (test-op "deflate/test")))) :in-order-to ((test-op (test-op "deflate/test"))))
(defsystem "deflate/test" (defsystem "deflate/test"
:depends-on ("deflate") :depends-on ("deflate" #+abcl (:require :gray-streams))
:components ((:file "deflate-test")) :components ((:file "deflate-test"))
:perform (test-op (o c) (symbol-call '#:deflate-test '#:perform-all-tests))) :perform (test-op (o c) (symbol-call '#:deflate-test '#:perform-all-tests)))