diff options
author | Korey Sewell <ksewell@umich.edu> | 2011-05-23 14:36:22 -0400 |
---|---|---|
committer | Korey Sewell <ksewell@umich.edu> | 2011-05-23 14:36:22 -0400 |
commit | b3ff137c8e110996f780fd3dd761eec6ec5acf44 (patch) | |
tree | f700da467ce99df2f87f232951e34130c05f48ea | |
parent | 5d5b0f49cc125973fb7048ad86bf85ab5ed57772 (diff) | |
download | gem5-b3ff137c8e110996f780fd3dd761eec6ec5acf44.tar.xz |
configs: missed spot progress-interval change
-rw-r--r-- | configs/common/Simulation.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configs/common/Simulation.py b/configs/common/Simulation.py index 1cc2f47b7..7abf478da 100644 --- a/configs/common/Simulation.py +++ b/configs/common/Simulation.py @@ -96,7 +96,7 @@ def run(options, root, testsys, cpu_class): max_checkpoints = options.max_checkpoints switch_cpus = None - if options.prog_intvl: + if options.prog_interval: for i in xrange(np): testsys.cpu[i].progress_interval = options.prog_interval |