diff options
author | Kevin Lim <ktlim@umich.edu> | 2006-06-16 18:04:34 -0400 |
---|---|---|
committer | Kevin Lim <ktlim@umich.edu> | 2006-06-16 18:04:34 -0400 |
commit | aa1efe3e72e40526e1db3f99c1fbb69d3c12d28c (patch) | |
tree | 579a27173c094349d9b19327b534d826b760dc04 /configs | |
parent | 4e07f6ca52828247fe1741b1e6c5269ad5291187 (diff) | |
download | gem5-aa1efe3e72e40526e1db3f99c1fbb69d3c12d28c.tar.xz |
Update this with the same option as single_fs.py
--HG--
extra : convert_revision : 778d654f515b6af7c45165b0a9bc5ef0d60f0d19
Diffstat (limited to 'configs')
-rw-r--r-- | configs/test/test.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configs/test/test.py b/configs/test/test.py index 76791d9d7..2b5a6769f 100644 --- a/configs/test/test.py +++ b/configs/test/test.py @@ -13,7 +13,7 @@ parser = optparse.OptionParser(option_list=m5.standardOptions) parser.add_option("-c", "--cmd", default="hello") parser.add_option("-t", "--timing", action="store_true") -parser.add_option("-f", "--full", action="store_true") +parser.add_option("-d", "--detailed", action="store_true") parser.add_option("-m", "--maxtick", type="int") (options, args) = parser.parse_args() @@ -34,7 +34,7 @@ mem = PhysicalMemory() if options.timing: cpu = TimingSimpleCPU() -elif options.full: +elif options.detailed: cpu = DetailedO3CPU() else: cpu = AtomicSimpleCPU() |