diff options
author | Jason Lowe-Power <power.jg@gmail.com> | 2015-09-16 09:35:36 -0500 |
---|---|---|
committer | Jason Lowe-Power <power.jg@gmail.com> | 2015-09-16 09:35:36 -0500 |
commit | 29dd04cfe96f095414d881b53cb0838661996f57 (patch) | |
tree | 75ccd3fa5802b414bc8819795bff80449aa1bff1 /tests/configs/learning-gem5-p1-two-level.py | |
parent | f065f9941b5e3b2796ec46d1926115283edd66cd (diff) | |
download | gem5-29dd04cfe96f095414d881b53cb0838661996f57.tar.xz |
tests: Add tests for the Learning gem5 scripts
These tests will ensure that Learning gem5 scripts are always up to date with
the changes in the mainline of gem5.
Committed by: Nilay Vaish <nilay@cs.wisc.edu>
Diffstat (limited to 'tests/configs/learning-gem5-p1-two-level.py')
-rw-r--r-- | tests/configs/learning-gem5-p1-two-level.py | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/tests/configs/learning-gem5-p1-two-level.py b/tests/configs/learning-gem5-p1-two-level.py new file mode 100644 index 000000000..caabe05d5 --- /dev/null +++ b/tests/configs/learning-gem5-p1-two-level.py @@ -0,0 +1,24 @@ + +# A wrapper around configs/learning_gem5/part1/two_level.py + +# For some reason, this is implicitly needed by run.py +root = None + +import m5 + +def run_test(root): + # Called from tests/run.py + + # Add paths that we need + m5.util.addToPath('../configs/learning_gem5/part1') + m5.util.addToPath('../configs/common') + + # The path to this script is the only parameter. Delete it so we can + # execute the script that we want to execute. + import sys + del sys.argv[1:] + # Note: at this point, we could add options we want to test. + # For instance, sys.argv.append('--l2_size=512kB') + + # Execute the script we are wrapping + execfile('configs/learning_gem5/part1/two_level.py') |