diff options
author | Nilay Vaish <nilay@cs.wisc.edu> | 2012-03-28 11:01:53 -0500 |
---|---|---|
committer | Nilay Vaish <nilay@cs.wisc.edu> | 2012-03-28 11:01:53 -0500 |
commit | 390cfc7be9e5e477451a31a1dc8df82b42ee4011 (patch) | |
tree | 79535c74b31fdac5d3e0f64c12372fc7572609c8 /tests/configs/simple-timing-ruby.py | |
parent | 6ca3af8ecfa5e6fbc03b01c0eba3de9d6e2f7c45 (diff) | |
download | gem5-390cfc7be9e5e477451a31a1dc8df82b42ee4011.tar.xz |
Config: Change the way options are added
I am not too happy with the way options are added in files se.py and fs.py
currently. This patch moves all the options to the file Options.py, functions
from which are called when required.
Diffstat (limited to 'tests/configs/simple-timing-ruby.py')
-rw-r--r-- | tests/configs/simple-timing-ruby.py | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/tests/configs/simple-timing-ruby.py b/tests/configs/simple-timing-ruby.py index 8339e0e9a..19e827c80 100644 --- a/tests/configs/simple-timing-ruby.py +++ b/tests/configs/simple-timing-ruby.py @@ -35,21 +35,18 @@ import os, optparse, sys # Get paths we might need config_path = os.path.dirname(os.path.abspath(__file__)) config_root = os.path.dirname(config_path) -m5_root = os.path.dirname(config_root) addToPath(config_root+'/configs/common') addToPath(config_root+'/configs/ruby') import Ruby +import Options parser = optparse.OptionParser() +Options.addCommonOptions(parser) -# # Add the ruby specific and protocol specific options -# Ruby.define_options(parser) -execfile(os.path.join(config_root, "configs/common", "Options.py")) - (options, args) = parser.parse_args() # |