Skip to content
Snippets Groups Projects
Commit eda76df4 authored by pfdietz's avatar pfdietz
Browse files

Disable nil arrays, vectors in lispworks

parent 9150a877
No related branches found
No related tags found
No related merge requests found
......@@ -26,6 +26,11 @@
(rt:disable-note :assume-no-simple-streams)
(rt:disable-note :assume-no-gray-streams))
#+lispworks
(progn
(rtest:disable-note :allow-nil-arrays)
(rtest:disable-note :nil-vectors-are-strings))
(in-package :cl-test)
;;; These two tests will misbehave if the tests are being
......
......@@ -6,6 +6,11 @@
(rt:disable-note :assume-no-simple-streams)
(rt:disable-note :assume-no-gray-streams))
#+lispworks
(progn
(rtest:disable-note :allow-nil-arrays)
(rtest:disable-note :nil-vectors-are-strings))
(in-package :cl-test)
;;; These two tests will misbehave if the tests are being
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment