projects
/
sbcl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d6e6a37
)
Fix errno value for sb-posix rmdir.error.3 test on OpenBSD.
author
Joshua Elsasser
<joshua@elsasser.org>
Mon, 17 Oct 2011 01:12:53 +0000
(18:12 -0700)
committer
Joshua 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
patch
|
blob
|
history
diff --git
a/contrib/sb-posix/posix-tests.lisp
b/contrib/sb-posix/posix-tests.lisp
index
6cdc955
..
776cbbc
100644
(file)
--- 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