summaryrefslogtreecommitdiff
path: root/dev-lisp/sbcl/files/sb-posix-test-2.2.9.patch
blob: f88f13301dfd584917d2a56e76cb50dcf8540253 (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
diff -r -U2 sbcl-2.2.9.orig/contrib/sb-posix/posix-tests.lisp sbcl-2.2.9/contrib/sb-posix/posix-tests.lisp
--- sbcl-2.2.9.orig/contrib/sb-posix/posix-tests.lisp	2022-09-29 14:43:33.000000000 +0700
+++ sbcl-2.2.9/contrib/sb-posix/posix-tests.lisp	2022-10-01 16:32:39.919563905 +0700
@@ -166,15 +166,15 @@
   #.sb-posix::einval)
 
-(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 freebsd) ,sb-posix:eisdir
-                #+win32 ,sb-posix::eacces #+win32 ,sb-posix::enotempty
-                #+sunos ,sb-posix::einval
-                #-(or darwin openbsd freebsd 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 freebsd) ,sb-posix:eisdir
+;                 #+win32 ,sb-posix::eacces #+win32 ,sb-posix::enotempty
+;                 #+sunos ,sb-posix::einval
+;                 #-(or darwin openbsd freebsd win32 sunos) ,sb-posix::ebusy))))
+;   t)
 
 (deftest rmdir.error.4