X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;ds=inline;f=tests%2Ffilesys.pure.lisp;h=a1800e23b49c5309fa0b7cac23000280ce66a321;hb=67d2b80e478824a46317419f076ab1f6b020f6b1;hp=559e0fd3fdc72f16d8e184b998bb808d19a102c8;hpb=1dc58ed504bd2de24fd87f9267c97c4a7d90ba3c;p=sbcl.git diff --git a/tests/filesys.pure.lisp b/tests/filesys.pure.lisp index 559e0fd..a1800e2 100644 --- a/tests/filesys.pure.lisp +++ b/tests/filesys.pure.lisp @@ -36,6 +36,22 @@ (namestring pathname))) dir))) +;;; Set *default-pathname-defaults* to something other than the unix +;;; cwd, to catch functions which access the filesystem without +;;; merging properly. We should test more functions than just OPEN +;;; here, of course + +(let ((*default-pathname-defaults* + (make-pathname :directory + (butlast + (pathname-directory *default-pathname-defaults*)) + :defaults *default-pathname-defaults*))) + ;; SBCL 0.7.1.2 failed to merge on OPEN + (with-open-file (i "tests/filesys.pure.lisp") + (assert i))) + + + ;;; ANSI: FILE-LENGTH should signal an error of type TYPE-ERROR if ;;; STREAM is not a stream associated with a file. ;;;