X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=tests%2Fpathnames.impure.lisp;h=732f9d896f4ea244b03f1675eda985b541713f84;hb=6bbecc9b6b8b6237b4040b0e77bd578044b96b7b;hp=724692488e7b782081666e3ee9d3152a5dbdcd25;hpb=9df2abae0a60d757448f06f0cc90213ec9fa775b;p=sbcl.git diff --git a/tests/pathnames.impure.lisp b/tests/pathnames.impure.lisp index 7246924..732f9d8 100644 --- a/tests/pathnames.impure.lisp +++ b/tests/pathnames.impure.lisp @@ -531,8 +531,7 @@ ;;; Reported by Willem Broekema: Reading #p"\\\\" caused an error due ;;; to insufficient sanity in input testing in EXTRACT-DEVICE (in ;;; src;code;win32-pathname). -#+win32 -(with-test (:name :bug-489698) +(with-test (:name :bug-489698 :skipped-on '(not :win32)) (assert (equal (make-pathname :directory '(:absolute)) (read-from-string "#p\"\\\\\\\\\"")))) @@ -593,4 +592,8 @@ ;; * / :WILD (assert (equal (pathname-directory #p"\\*/") '(:relative "*")))) +(with-test (:name :ensure-directories-exist-with-odd-d-p-d) + (let ((*default-pathname-defaults* #p"/tmp/foo")) + (ensure-directories-exist "/"))) + ;;;; success