Changeset 794
- Timestamp:
- 07/07/07 19:17:28 (1 year ago)
- Files:
-
- cherokee/trunk/ChangeLog (modified) (1 diff)
- cherokee/trunk/qa/help.py (added)
- cherokee/trunk/qa/run-tests.py (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
cherokee/trunk/ChangeLog
r793 r794 1 2 2007-07-03 A.D.F <adefacc@tin.it> 1 2007-07-07 Alvaro Lopez Ortega <alvaro@alobbs.com> 2 3 * qa/run-tests.py, qa/help.py (help_print_parameters): Added a 4 help message and a new parameter -h. 5 6 2007-07-07 A.D.F <adefacc@tin.it> 3 7 4 8 * cherokee/connection.c cherokee/trunk/qa/run-tests.py
r793 r794 21 21 from base import * 22 22 from conf import * 23 from help import * 23 24 24 25 # Configuration parameters … … 37 38 fcgi = True 38 39 log = False 40 help = False 39 41 40 42 server = CHEROKEE_PATH … … 66 68 # Process the parameters 67 69 for p in param: 70 print p 68 71 if p == '-c': clean = False 69 72 elif p == '-k': kill = False … … 74 77 elif p == '-b': nobody = True 75 78 elif p == '-l': log = True 79 elif p == '-h': help = True 76 80 elif p[:2] == '-n': num = int(p[2:]) 77 81 elif p[:2] == '-t': thds = int(p[2:]) … … 81 85 elif p[:2] == '-e': server = p[2:] 82 86 elif p[:2] == '-v': valgrind = p[2:] 87 else: 88 help = True 89 90 # Print help 91 if help: 92 help_print_parameters() 93 sys.exit(1) 83 94 84 95 # Fix up pause