-# Copyright (c) 2012, 2019 ARM Limited
+# Copyright (c) 2012, 2019-2020 ARM Limited
# All rights reserved
#
# The license below extends only to copyright in the software and shall
print('Exiting @ tick', m5.curTick(), 'because', exit_event.getCause())
config = sys.argv[1]
-os.environ['M5_PATH'] = os.path.dirname(__file__)
+os.environ['M5_PATH'] = sys.argv[2]
# path setup
gem5_root = joinpath(os.path.dirname(__file__), '..', '..', '..', '..', '..')
-# Copyright (c) 2019 ARM Limited
+# Copyright (c) 2019-2020 ARM Limited
# All rights reserved
#
# The license below extends only to copyright in the software and shall
arm_fs_binaries = DownloadedArchive(url, path, tarball)
for name in arm_fs_quick_tests:
- args = [ joinpath(config.base_dir, 'tests', 'configs', name + '.py') ]
+ args = [
+ joinpath(config.base_dir, 'tests', 'configs', name + '.py'),
+ path
+ ]
gem5_verify_config(
name=name,
verifiers=(), # Add basic stat verifiers
)
for name in arm_fs_long_tests:
- args = [ joinpath(config.base_dir, 'tests', 'configs', name + '.py') ]
+ args = [
+ joinpath(config.base_dir, 'tests', 'configs', name + '.py'),
+ path
+ ]
gem5_verify_config(
name=name,
verifiers=(), # TODO: Add basic stat verifiers