diff options
author | stas <stas@FreeBSD.org> | 2011-07-15 08:07:26 +0800 |
---|---|---|
committer | stas <stas@FreeBSD.org> | 2011-07-15 08:07:26 +0800 |
commit | 2f13a6ba8597f64312e5b3c762bf68306952e1c3 (patch) | |
tree | 129512bb0aa02c33279793ef2c5fcd18667c448c /lang/sbcl/files | |
parent | 7cf2e49f4877e786431e140314336d9dcf7785e4 (diff) | |
download | freebsd-ports-gnome-2f13a6ba8597f64312e5b3c762bf68306952e1c3.tar.gz freebsd-ports-gnome-2f13a6ba8597f64312e5b3c762bf68306952e1c3.tar.zst freebsd-ports-gnome-2f13a6ba8597f64312e5b3c762bf68306952e1c3.zip |
- Fix errno expectation in the rmdir.3 test
(freebsd returns the same error darwin does).
PR: ports/154019 (based on)
Submitted by: Anonymous <swell.k@gmail.com>
Diffstat (limited to 'lang/sbcl/files')
-rw-r--r-- | lang/sbcl/files/patch-contrib_sb-posix_posix-tests.lisp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/lang/sbcl/files/patch-contrib_sb-posix_posix-tests.lisp b/lang/sbcl/files/patch-contrib_sb-posix_posix-tests.lisp new file mode 100644 index 000000000000..ffd611727f25 --- /dev/null +++ b/lang/sbcl/files/patch-contrib_sb-posix_posix-tests.lisp @@ -0,0 +1,18 @@ +--- contrib/sb-posix/posix-tests.lisp.orig 2011-07-14 16:51:21.000000000 -0700 ++++ contrib/sb-posix/posix-tests.lisp 2011-07-14 16:51:36.000000000 -0700 +@@ -172,13 +172,13 @@ + (sb-posix:rmdir #-win32 "/" #+win32 "C:/") + (sb-posix:syscall-error (c) + (sb-posix:syscall-errno c))) +- #+darwin ++ #+(or darwin freebsd) + #.sb-posix:eisdir + #+win32 + #.sb-posix::eacces + #+sunos + #.sb-posix::einval +- #-(or darwin win32 sunos) ++ #-(or darwin freebsd win32 sunos) + #.sb-posix::ebusy) + + (deftest rmdir.error.4 |