diff options
Diffstat (limited to 'configs')
-rw-r--r-- | configs/example/ruby_direct_test.py | 2 | ||||
-rw-r--r-- | configs/example/ruby_mem_test.py | 2 | ||||
-rw-r--r-- | configs/example/ruby_network_test.py | 3 | ||||
-rw-r--r-- | configs/example/ruby_random_test.py | 2 |
4 files changed, 9 insertions, 0 deletions
diff --git a/configs/example/ruby_direct_test.py b/configs/example/ruby_direct_test.py index 7f38d5431..53a1b6850 100644 --- a/configs/example/ruby_direct_test.py +++ b/configs/example/ruby_direct_test.py @@ -36,6 +36,7 @@ import os, optparse, sys addToPath('../common') addToPath('../ruby') +import Options import Ruby # Get paths we might need. It's expected this file is in m5/configs/example. @@ -44,6 +45,7 @@ config_root = os.path.dirname(config_path) m5_root = os.path.dirname(config_root) parser = optparse.OptionParser() +Options.addCommonOptions(parser) parser.add_option("-l", "--requests", metavar="N", default=100, help="Stop after N requests") diff --git a/configs/example/ruby_mem_test.py b/configs/example/ruby_mem_test.py index 20c25e833..3fec09c47 100644 --- a/configs/example/ruby_mem_test.py +++ b/configs/example/ruby_mem_test.py @@ -36,6 +36,7 @@ import os, optparse, sys addToPath('../common') addToPath('../ruby') +import Options import Ruby # Get paths we might need. It's expected this file is in m5/configs/example. @@ -44,6 +45,7 @@ config_root = os.path.dirname(config_path) m5_root = os.path.dirname(config_root) parser = optparse.OptionParser() +Options.addCommonOptions(parser) parser.add_option("-l", "--maxloads", metavar="N", default=0, help="Stop after N loads") diff --git a/configs/example/ruby_network_test.py b/configs/example/ruby_network_test.py index aa93acd2f..2d68a81ea 100644 --- a/configs/example/ruby_network_test.py +++ b/configs/example/ruby_network_test.py @@ -35,6 +35,8 @@ from m5.util import addToPath import os, optparse, sys addToPath('../common') addToPath('../ruby') + +import Options import Ruby # Get paths we might need. It's expected this file is in m5/configs/example. @@ -43,6 +45,7 @@ config_root = os.path.dirname(config_path) m5_root = os.path.dirname(config_root) parser = optparse.OptionParser() +Options.addCommonOptions(parser) parser.add_option("--synthetic", type="int", default=0, help="Synthetic Traffic type. 0 = Uniform Random,\ diff --git a/configs/example/ruby_random_test.py b/configs/example/ruby_random_test.py index 5e6d82372..11571a297 100644 --- a/configs/example/ruby_random_test.py +++ b/configs/example/ruby_random_test.py @@ -36,6 +36,7 @@ import os, optparse, sys addToPath('../common') addToPath('../ruby') +import Options import Ruby # Get paths we might need. It's expected this file is in m5/configs/example. @@ -44,6 +45,7 @@ config_root = os.path.dirname(config_path) m5_root = os.path.dirname(config_root) parser = optparse.OptionParser() +Options.addCommonOptions(parser) parser.add_option("-l", "--checks", metavar="N", default=100, help="Stop after N checks (loads)") |