From cvs-return-2136-apmail-apr-cvs-archive=apr.apache.org@apr.apache.org Sat Sep 15 01:05:44 2001 Return-Path: Delivered-To: apmail-apr-cvs-archive@apr.apache.org Received: (qmail 23416 invoked by uid 500); 15 Sep 2001 01:05:44 -0000 Mailing-List: contact cvs-help@apr.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: Reply-To: dev@apr.apache.org Delivered-To: mailing list cvs@apr.apache.org Received: (qmail 23405 invoked from network); 15 Sep 2001 01:05:44 -0000 Date: 15 Sep 2001 01:00:48 -0000 Message-ID: <20010915010048.60494.qmail@icarus.apache.org> From: rbb@apache.org To: apr-cvs@apache.org Subject: cvs commit: apr/test testlock.c X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N rbb 01/09/14 18:00:48 Modified: test testlock.c Log: I accidentally commented out this function in my last commit. This puts it back in, but it also makes a failure non-terminal. Read/write locks were not implemented for the old API on Windows, but they are using the new API, so this failure can't be terminal, because if it is, the new API isn't tested. Revision Changes Path 1.10 +2 -3 apr/test/testlock.c Index: testlock.c =================================================================== RCS file: /home/cvs/apr/test/testlock.c,v retrieving revision 1.9 retrieving revision 1.10 diff -u -r1.9 -r1.10 --- testlock.c 2001/09/15 00:57:13 1.9 +++ testlock.c 2001/09/15 01:00:48 1.10 @@ -610,12 +610,11 @@ rv, apr_strerror(rv, (char*)errmsg, 200)); exit(-3); } - /* + if ((rv = test_rw()) != APR_SUCCESS) { fprintf(stderr,"RW Lock test failed : [%d] %s\n", rv, apr_strerror(rv, (char*)errmsg, 200)); - exit(-4); - }*/ + } if ((rv = test_thread_mutex()) != APR_SUCCESS) { fprintf(stderr,"thread_mutex test failed : [%d] %s\n",