diff options
author | Ali Saidi <saidi@eecs.umich.edu> | 2006-06-27 14:58:46 -0400 |
---|---|---|
committer | Ali Saidi <saidi@eecs.umich.edu> | 2006-06-27 14:58:46 -0400 |
commit | 88c9b17cb927e5b789d883023db9516f878f526a (patch) | |
tree | 73ccded5c2a2b3e0137353bbfee5edcf35c4f115 /configs | |
parent | 833d80db2d3119d85038b77360f8e25222b1e3f2 (diff) | |
download | gem5-88c9b17cb927e5b789d883023db9516f878f526a.tar.xz |
Add help strings for options
--HG--
extra : convert_revision : ebbafaf00c56a4d2ee65eea08a12d276f279135d
Diffstat (limited to 'configs')
-rw-r--r-- | configs/test/test.py | 23 |
1 files changed, 17 insertions, 6 deletions
diff --git a/configs/test/test.py b/configs/test/test.py index 2047d65af..3095cd1d1 100644 --- a/configs/test/test.py +++ b/configs/test/test.py @@ -11,12 +11,19 @@ from FullO3Config import * # parse command-line arguments parser = optparse.OptionParser(option_list=m5.standardOptions) -parser.add_option("-c", "--cmd", default="hello") -parser.add_option("-o", "--options", default="") -parser.add_option("-i", "--input", default="") -parser.add_option("-t", "--timing", action="store_true") -parser.add_option("-d", "--detailed", action="store_true") -parser.add_option("-m", "--maxtick", type="int") +parser.add_option("-c", "--cmd", default="hello", + help="The binary to run in syscall emulation mode.") +parser.add_option("-o", "--options", default="", + help="The options to pass to the binary, use \" \" around the entire\ + string.") +parser.add_option("-i", "--input", default="", + help="A file of input to give to the binary.") +parser.add_option("-t", "--timing", action="store_true", + help="Use simple timing CPU.") +parser.add_option("-d", "--detailed", action="store_true", + help="Use detailed CPU.") +parser.add_option("-m", "--maxtick", type="int", + help="Set the maximum number of ticks to run for") (options, args) = parser.parse_args() m5.setStandardOptions(options) @@ -37,6 +44,10 @@ if options.input != "": magicbus = Bus() mem = PhysicalMemory() +if options.timing and options.detailed: + print "Error: you may only specify one cpu model"; + sys.exit(1) + if options.timing: cpu = TimingSimpleCPU() elif options.detailed: |