X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=tests%2Fstream.impure.lisp;h=71a7a8c3396d31f11c39c9aa3896031e0b084049;hb=b095510bb0f8a15bba529f31075998ce7fa883f6;hp=d3f3adfa60271566afd954aa16ef50b5b420d6d1;hpb=da2e2f4be772532cacd9188d206d4eb82dc9f6ef;p=sbcl.git diff --git a/tests/stream.impure.lisp b/tests/stream.impure.lisp index d3f3adf..71a7a8c 100644 --- a/tests/stream.impure.lisp +++ b/tests/stream.impure.lisp @@ -66,5 +66,32 @@ (assert (= (read-byte s) -1))) (delete-file p)) +;;; :IF-EXISTS got :ERROR and NIL the wrong way round (reported by +;;; Milan Zamazal) +(let* ((p "this-file-will-exist") + (stream (open p :direction :output :if-exists :error))) + (assert (null (with-open-file (s p :direction :output :if-exists nil) s))) + (assert (raises-error? + (with-open-file (s p :direction :output :if-exists :error)))) + (close stream) + (delete-file p)) + +(assert (raises-error? (read-byte (make-string-input-stream "abc")) + type-error)) +(assert (raises-error? (with-open-file (s "/dev/zero") + (read-byte s)) + type-error)) +;;; bidirectional streams getting confused about their position +(let ((p "bidirectional-stream-test")) + (with-open-file (s p :direction :output :if-exists :supersede) + (with-standard-io-syntax + (format s "~S ~S ~S~%" 'these 'are 'symbols))) + (with-open-file (s p :direction :io :if-exists :overwrite) + (read s) + (with-standard-io-syntax + (prin1 'insert s))) + (with-open-file (s p) + (assert (string= (read-line s) "THESE INSERTMBOLS"))) + (delete-file p)) ;;; success (quit :unix-status 104)