From: Kevin Lim Date: Fri, 16 Jun 2006 22:04:34 +0000 (-0400) Subject: Update this with the same option as single_fs.py X-Git-Tag: m5_2.0_beta1~36^2~59^2~4 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=aa1efe3e72e40526e1db3f99c1fbb69d3c12d28c;p=gem5.git Update this with the same option as single_fs.py --HG-- extra : convert_revision : 778d654f515b6af7c45165b0a9bc5ef0d60f0d19 --- 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()