From bd16a3a8a8a1b0f2971e6bac6c896320f02208c2 Mon Sep 17 00:00:00 2001 From: Corinna Vinschen Date: Mon, 1 Dec 2003 17:33:11 +0000 Subject: * winsup.api/known_bugs.tcl: Remove fcntl09 and fcntl10. These tests had a compatibility bug. * winsup.api/ltp/fcntl09.c: Don't use F_RDLCK | F_WRLCK but only F_WRLCK to set a write lock. * winsup.api/ltp/fcntl10.c: Ditto. --- winsup/testsuite/winsup.api/ltp/fcntl09.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'winsup/testsuite/winsup.api/ltp/fcntl09.c') diff --git a/winsup/testsuite/winsup.api/ltp/fcntl09.c b/winsup/testsuite/winsup.api/ltp/fcntl09.c index 523bd094b..3a827e149 100644 --- a/winsup/testsuite/winsup.api/ltp/fcntl09.c +++ b/winsup/testsuite/winsup.api/ltp/fcntl09.c @@ -161,7 +161,13 @@ main(int ac, char **av) /* reset Tst_count in case we are looping. */ Tst_count=0; +#if 0 + /* Ouch! Either read *or* write lock, but not both! + This code depends on F_RDLCK being 0. */ flocks.l_type = F_RDLCK | F_WRLCK; +#else + flocks.l_type = F_WRLCK; +#endif /* * Call fcntl(2) with F_SETLK argument on fname */ -- cgit v1.2.3