Changeset 488
- Timestamp:
- Wed Jul 23 15:58:46 2008
- Files:
-
- trunk/buildtests/runtests.py (modified) (diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
trunk/buildtests/runtests.py
r485 r488 98 98 args = sys.argv[1:] 99 99 100 if "-i" in args: 100 if "-c" in args: 101 # only clean up 102 tests = [] 103 elif "-i" in args: 101 104 print "Running interactive tests" 102 105 tests = interactive_tests … … 106 109 107 110 clean() 108 runtests(tests) 111 if tests: 112 runtests(tests)
