From 2a9b33fc45842ec0335fef2988e07337ae8f1fc7 Mon Sep 17 00:00:00 2001 From: Joshua Elsasser Date: Sun, 16 Oct 2011 18:12:53 -0700 Subject: [PATCH] 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. --- contrib/sb-posix/posix-tests.lisp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 1.7.10.4