Remove invalid default value for '-p' in make.py

This prevented make.py from running properly.
pull/90/head^2
Bogdan Marinescu 2013-10-22 11:50:52 +03:00
parent dfb472ceaf
commit cabc4b6b9d
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ except:
if __name__ == '__main__':
# Parse Options
parser = get_default_options_parser()
parser.add_option("-p", type="int", dest="program", default=-1,
parser.add_option("-p", type="int", dest="program",
help="The index of the desired test program: [0-%d]" % (len(TESTS)-1))
parser.add_option("-n", dest="program_name",
help="The name of the desired test program")