Changeset 828

Show
Ignore:
Timestamp:
07/14/07 19:44:20 (1 year ago)
Author:
alo
Message:

--

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • cherokee/trunk/ChangeLog

    r827 r828  
    112007-07-14  Alvaro Lopez Ortega  <alvaro@alobbs.com> 
     2 
     3        * qa/run-tests.py: If the server runs with Valgrind, wait 10 more 
     4        seconds to start the tests. There were many occasions in which the 
     5        servers wasn't ready when the first test was executed. 
    26 
    37        * cherokee/handler_common.c: Updated. Now it uses the new iocache 
  • cherokee/trunk/qa/run-tests.py

    r797 r828  
    4242 
    4343server   = CHEROKEE_PATH 
     44delay    = SERVER_DELAY 
    4445 
    4546# Make the DocumentRoot directory 
     
    236237        print 
    237238 
    238         for s in range(SERVER_DELAY): 
    239            sys.stdout.write ("Tests will start in %d secs\r" % (SERVER_DELAY - s - 1)) 
     239        if valgrind != None: 
     240            delay += 10 
     241 
     242        for s in range(delay): 
     243           sys.stdout.write ("Tests will start in %d secs\r" % (delay - s - 1)) 
    240244           sys.stdout.flush() 
    241245           time.sleep(1)