X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=tests%2Fstream.impure.lisp;h=598c55ab5cad690e05224f5f6c396fc6924a4a8a;hb=75b52379bdc2269961af6a1308eca63610f38ac3;hp=7348bfea9f29030a02b75211b8a3519f722fe2c5;hpb=cbe488f1e264bc8f7b0501430b260db1887b055d;p=sbcl.git diff --git a/tests/stream.impure.lisp b/tests/stream.impure.lisp index 7348bfe..598c55a 100644 --- a/tests/stream.impure.lisp +++ b/tests/stream.impure.lisp @@ -125,5 +125,29 @@ (assert (= 1 (file-position s))) ; unicode... (assert (file-position s 0)))) (delete-file p)) + +;;; CLOSING a non-new streams should not delete them, and superseded +;;; files should be restored. +(let ((test "test-file-for-close-should-not-delete")) + (macrolet ((test-mode (mode) + `(progn + (catch :close-test-exit + (with-open-file (f test :direction :output :if-exists ,mode) + (write-line "test" f) + (throw :close-test-exit t))) + (assert (and (probe-file test) ,mode))))) + (unwind-protect + (progn + (with-open-file (f test :direction :output) + (write-line "test" f)) + (test-mode :append) + ;; FIXME: We really should recover supersede files as well, according to + ;; CLOSE in CLHS, but at the moment we don't. + ;; (test-mode :supersede) + (test-mode :rename) + (test-mode :rename-and-delete)) + (when (probe-file test) + (delete-file test))))) + ;;; success (quit :unix-status 104)