X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=tests%2Fseq.impure.lisp;h=ee254df89d9389329dc3ede7298f19d1154bed28;hb=1dc3a468ba32755c51747d6e85ed32d989f2dd49;hp=9684221bbef7d5ace02dfc09a8f39ae8add86f33;hpb=42cb633f2a06d5cbe6b0ec86920cb0d662c49843;p=sbcl.git diff --git a/tests/seq.impure.lisp b/tests/seq.impure.lisp index 9684221..ee254df 100644 --- a/tests/seq.impure.lisp +++ b/tests/seq.impure.lisp @@ -515,7 +515,9 @@ (sequence-bounding-indices-test (format t "~&/Function PARSE-NAMESTRING") (setf (fill-pointer string) 10) - (setf (subseq string 0 10) "/dev/ /tmp") + (setf (subseq string 0 10) + #-win32 "/dev/ /tmp" + #+win32 "C:/ NUL") (setf (fill-pointer string) 5) (assert (truename (parse-namestring string nil *default-pathname-defaults* :start 0 :end 5))) @@ -990,6 +992,8 @@ bashed-dst) (return-from test-copy-bashing nil)))))))) +;; Too slow for the interpreter +#+#.(cl:if (cl:eq sb-ext:*evaluator-mode* :compile) '(and) '(or)) (loop for i = 1 then (* i 2) do ;; the bare '32' here is fairly arbitrary; '8' provides a good ;; range of lengths over which to fill and copy, which should tease