parser.add_option("-t","--tests",dest="tests",help="comma-separated list of modules to test",metavar="SUITS",default="")
parser.add_option("-w","--cwd",dest="cwd",help="working directory for tests",metavar="PATH",default=".")
parser.add_option("-a","--accuracy",dest="accuracy",help="look for accuracy tests instead of performance tests",action="store_true",default=False)
parser.add_option("-l","--longname",dest="useLongNames",action="store_true",help="generate log files with long names",default=False)
...
...
@@ -759,26 +774,26 @@ if __name__ == "__main__":
parser.add_option("","--serial",dest="adb_serial",help="Android: directs command to the USB device or emulator with the given serial number",metavar="serial number",default="")
parser.add_option("","--package",dest="junit_package",help="Android: run jUnit tests for specified package",metavar="package",default="")
parser.add_option("","--help-tests",dest="help",help="Show help for test executable",action="store_true",default=False)