blob: 517208a791e269fa6498f67f7fcc67507b731094 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
diff -r -U1 sbcl-1.2.15.orig/contrib/sb-posix/posix-tests.lisp sbcl-1.2.15/contrib/sb-posix/posix-tests.lisp
--- sbcl-1.2.15.orig/contrib/sb-posix/posix-tests.lisp 2015-08-31 00:59:03.000000000 +0600
+++ sbcl-1.2.15/contrib/sb-posix/posix-tests.lisp 2015-09-22 10:19:20.000000000 +0600
@@ -169,19 +169,19 @@
-(deftest rmdir.error.3
- (handler-case
- (sb-posix:rmdir #-win32 "/" #+win32 (sb-ext:posix-getenv "windir"))
- (sb-posix:syscall-error (c)
- (typep
- (sb-posix:syscall-errno c)
- '(member
- #+(or darwin openbsd)
- #.sb-posix:eisdir
- #+win32
- #.sb-posix::eacces
- #+win32
- #.sb-posix::enotempty
- #+sunos
- #.sb-posix::einval
- #-(or darwin openbsd win32 sunos)
- #.sb-posix::ebusy)))) t)
+;(deftest rmdir.error.3
+; (handler-case
+; (sb-posix:rmdir #-win32 "/" #+win32 (sb-ext:posix-getenv "windir"))
+; (sb-posix:syscall-error (c)
+; (typep
+; (sb-posix:syscall-errno c)
+; '(member
+; #+(or darwin openbsd)
+; #.sb-posix:eisdir
+; #+win32
+; #.sb-posix::eacces
+; #+win32
+; #.sb-posix::enotempty
+; #+sunos
+; #.sb-posix::einval
+; #-(or darwin openbsd win32 sunos)
+; #.sb-posix::ebusy)))) t)
|