Changeset 828
- Timestamp:
- 07/14/07 19:44:20 (1 year ago)
- Files:
-
- cherokee/trunk/ChangeLog (modified) (1 diff)
- cherokee/trunk/qa/run-tests.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
cherokee/trunk/ChangeLog
r827 r828 1 1 2007-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. 2 6 3 7 * cherokee/handler_common.c: Updated. Now it uses the new iocache cherokee/trunk/qa/run-tests.py
r797 r828 42 42 43 43 server = CHEROKEE_PATH 44 delay = SERVER_DELAY 44 45 45 46 # Make the DocumentRoot directory … … 236 237 print 237 238 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)) 240 244 sys.stdout.flush() 241 245 time.sleep(1)