Changeset 488

Show
Ignore:
Timestamp:
Wed Jul 23 15:58:46 2008
Author:
htgoebel
Message:

Added -c option for cleaning up.

Files:

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)