From d94c1b4a8c534bde146823f56558faf37cd4c4d7 Mon Sep 17 00:00:00 2001 From: Bruce O'Neel Date: Sun, 20 Nov 2011 13:09:03 +0200 Subject: [PATCH] fix sb-posix tests on OpenBSD FCNTL.FLOCK.2 the test wants to check the PID of the lock holder, and, OpenBSD 5.0 disallows this. OpenBSD 4.9 and earlier was fine with it. lp#892707 Signed-off-by: Nikodemus Siivola --- NEWS | 1 + contrib/sb-posix/posix-tests.lisp | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index 7f67885..16323bc 100644 --- a/NEWS +++ b/NEWS @@ -56,6 +56,7 @@ changes relative to sbcl-1.0.53: safe outside systems with getaddrinfo(). * bug fix: on 64-bit systems setting the nursery size above 4Gb now works. (lp#870868) + * bug fix: SB-POSIX tests failed on OpenBSD 5.0. (lp#892707) changes in sbcl-1.0.53 relative to sbcl-1.0.52: * enhancement: on 64-bit targets, in src/compiler/generic/early-vm.lisp, diff --git a/contrib/sb-posix/posix-tests.lisp b/contrib/sb-posix/posix-tests.lisp index 6cdc955..89ace44 100644 --- a/contrib/sb-posix/posix-tests.lisp +++ b/contrib/sb-posix/posix-tests.lisp @@ -478,7 +478,7 @@ 42) -#-(or win32 netbsd) +#-(or win32 openbsd netbsd) (deftest fcntl.flock.2 (locally (declare (sb-ext:muffle-conditions sb-ext:compiler-note)) (let ((flock (make-instance 'sb-posix:flock -- 1.7.10.4