Changeset 1594
- Timestamp:
- 06/22/08 09:57:07 (4 months ago)
- Files:
-
- cherokee/trunk/cherokee/iocache.c (modified) (2 diffs)
- cherokee/trunk/contrib/tracelor.py (modified) (1 diff)
- cherokee/trunk/qa/help.py (modified) (1 diff)
- cherokee/trunk/qa/run-tests.py (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
cherokee/trunk/cherokee/iocache.c
r1439 r1594 474 474 if (ret != ret_ok) { 475 475 if (iocache->files_num >= iocache->files_max) { 476 TRACE(ENTRIES, "Cache full for '%s'\n", filename->buf); 476 477 *ret_file = NULL; 477 478 ret = ret_no_sys; … … 538 539 if (ret != ret_ok) { 539 540 if (iocache->files_num >= iocache->files_max) { 541 TRACE(ENTRIES, "Cache full for '%s'\n", filename->buf); 542 *ret_file = NULL; 540 543 ret = ret_no_sys; 541 544 goto error; cherokee/trunk/contrib/tracelor.py
r1593 r1594 44 44 while True: 45 45 line = sys.stdin.readline() 46 if not line:46 if len(line) < 1: 47 47 break 48 48 cherokee/trunk/qa/help.py
r860 r1594 14 14 15 15 -n<NUM> Repetitions 16 -t<NUM> Number of threads of the server17 16 -p<NUM> Server port 18 17 -r<NUM> Starting delay (secs) 18 -t<NUM> Client threads number 19 -T<NUM> Server threads number 19 20 -j<FLOAT> Delay between tests (secs) 20 21 cherokee/trunk/qa/run-tests.py
r1588 r1594 29 29 pause = 0 30 30 tpause = 0.0 31 srv_thds = None 31 32 ssl = False 32 33 clean = True … … 88 89 elif p[:2] == '-p': port = int(p[2:]) 89 90 elif p[:2] == '-r': delay = int(p[2:]) 91 elif p[:2] == '-T': srv_thds = int(p[2:]) 90 92 elif p[:2] == '-j': tpause = float(p[2:]) 91 93 elif p[:2] == '-d': pause = p[2:] … … 191 193 """ % (LOGGER_TYPE, LOGGER_ACCESS, LOGGER_ERROR) 192 194 195 if srv_thds: 196 CONF_BASE += """ 197 server!thread_number = %d 198 """ % (srv_thds) 193 199 194 200 # Import modules