From: Joshua Elsasser Date: Mon, 17 Oct 2011 01:12:53 +0000 (-0700) Subject: Fix errno value for sb-posix rmdir.error.3 test on OpenBSD. X-Git-Url: http://repo.macrolet.net/gitweb/?a=commitdiff_plain;h=2a9b33fc45842ec0335fef2988e07337ae8f1fc7;p=sbcl.git Fix errno value for sb-posix rmdir.error.3 test on OpenBSD. Use #+bsd instead of #+(or darwin openbsd) on the assumption that all the other BSD-derived systems use the same errno value. --- diff --git a/contrib/sb-posix/posix-tests.lisp b/contrib/sb-posix/posix-tests.lisp index 6cdc955..776cbbc 100644 --- a/contrib/sb-posix/posix-tests.lisp +++ b/contrib/sb-posix/posix-tests.lisp @@ -174,7 +174,7 @@ (typep (sb-posix:syscall-errno c) '(member - #+darwin + #+bsd #.sb-posix:eisdir #+win32 #.sb-posix::eacces @@ -182,7 +182,7 @@ #.sb-posix::enotempty #+sunos #.sb-posix::einval - #-(or darwin win32 sunos) + #-(or bsd win32 sunos) #.sb-posix::ebusy)))) t) (deftest rmdir.error.4