diff options
author | Andrey Grozin <grozin@gentoo.org> | 2015-09-22 10:50:18 +0600 |
---|---|---|
committer | Andrey Grozin <grozin@gentoo.org> | 2015-09-22 10:50:18 +0600 |
commit | e53567187f146ee1f52d537d6f2efacb6a91f4c1 (patch) | |
tree | 4eba1c31505cc711e4f56d4eb72c3aa0354aeea4 /dev-lisp/sbcl/files | |
parent | media-gfx/gif2png: Stable for PPC64 (bug #535440). (diff) | |
download | gentoo-e53567187f146ee1f52d537d6f2efacb6a91f4c1.tar.gz gentoo-e53567187f146ee1f52d537d6f2efacb6a91f4c1.tar.bz2 gentoo-e53567187f146ee1f52d537d6f2efacb6a91f4c1.zip |
dev-lisp/sbcl: comment out a test in posix-tests.lisp
Bugs: 560276, 561018
Package-Manager: portage-2.2.20.1
Diffstat (limited to 'dev-lisp/sbcl/files')
-rw-r--r-- | dev-lisp/sbcl/files/sb-posix-test-1.2.15.patch | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/dev-lisp/sbcl/files/sb-posix-test-1.2.15.patch b/dev-lisp/sbcl/files/sb-posix-test-1.2.15.patch new file mode 100644 index 000000000000..517208a791e2 --- /dev/null +++ b/dev-lisp/sbcl/files/sb-posix-test-1.2.15.patch @@ -0,0 +1,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) + |