Fix errno value for sb-posix rmdir.error.3 test on OpenBSD.
authorJoshua Elsasser <joshua@elsasser.org>
Mon, 17 Oct 2011 01:12:53 +0000 (18:12 -0700)
committerJoshua Elsasser <joshua@elsasser.org>
Wed, 23 Nov 2011 00:30:28 +0000 (16:30 -0800)
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

index 6cdc955..776cbbc 100644 (file)
       (typep
        (sb-posix:syscall-errno c)
        '(member
-         #+darwin
+         #+bsd
          #.sb-posix:eisdir
          #+win32
          #.sb-posix::eacces
          #.sb-posix::enotempty
          #+sunos
          #.sb-posix::einval
-         #-(or darwin win32 sunos)
+         #-(or bsd win32 sunos)
          #.sb-posix::ebusy)))) t)
 
 (deftest rmdir.error.4