Changeset 10328
- Timestamp:
- 08/27/08 20:55:18 (3 months ago)
- Location:
- trunk/test
- Files:
-
- 2 modified
-
lib/__init__.py (modified) (1 diff)
-
runtests.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/lib/__init__.py
r10320 r10328 4 4 5 5 use_x = True 6 opts, args = getopt.getopt(sys.argv[1:], 'n', ['no-x']) 6 shortargs = 'hnv:' 7 longargs = 'help no-x verbose=' 8 opts, args = getopt.getopt(sys.argv[1:], shortargs, longargs.split()) 7 9 for o, a in opts: 8 10 if o in ('-n', '--no-x'): -
trunk/test/runtests.py
r10320 r10328 26 26 except: 27 27 print 'verbose must be a number >= 0' 28 sys.exit(2) 28 29 29 30 # new test modules need to be added manually
