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",
  
  
  

Reply via email to