blob: 7ee9cc8154b00cd96210451be739a1b7e5c19c26 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# A wrapper around configs/learning_gem5/part1/simple.py
# For some reason, this is implicitly needed by run.py
root = None
def run_test(root):
# Called from tests/run.py
# Execute the script we are wrapping
execfile('configs/learning_gem5/part1/simple.py')
|