summaryrefslogtreecommitdiff
path: root/tests/gem5
diff options
context:
space:
mode:
Diffstat (limited to 'tests/gem5')
-rw-r--r--tests/gem5/cpu_tests/test.py2
-rw-r--r--tests/gem5/fs/linux/arm/test.py2
-rw-r--r--tests/gem5/m5_util/test_exit.py3
3 files changed, 4 insertions, 3 deletions
diff --git a/tests/gem5/cpu_tests/test.py b/tests/gem5/cpu_tests/test.py
index 58925de25..1a61a7331 100644
--- a/tests/gem5/cpu_tests/test.py
+++ b/tests/gem5/cpu_tests/test.py
@@ -43,7 +43,7 @@ valid_isas = {
base_path = joinpath(absdirpath(__file__), 'benchmarks', 'bin')
-base_url = 'http://gem5.org/dist/current/gem5/cpu_tests/benchmarks/bin/'
+base_url = 'http://dist.gem5.org/dist/current/gem5/cpu_tests/benchmarks/bin/'
for isa in valid_isas:
path = joinpath(base_path, isa)
for workload in workloads:
diff --git a/tests/gem5/fs/linux/arm/test.py b/tests/gem5/fs/linux/arm/test.py
index 4ed58ae25..15a1c6fbc 100644
--- a/tests/gem5/fs/linux/arm/test.py
+++ b/tests/gem5/fs/linux/arm/test.py
@@ -84,7 +84,7 @@ arm_fs_long_tests = [
]
tarball = 'aarch-system-201901106.tar.bz2'
-url = "http://gem5.org/dist/current/arm/" + tarball
+url = "http://dist.gem5.org/dist/current/arm/" + tarball
path = os.path.dirname(os.path.abspath(__file__))
arm_fs_binaries = DownloadedArchive(url, path, tarball)
diff --git a/tests/gem5/m5_util/test_exit.py b/tests/gem5/m5_util/test_exit.py
index 3c9951254..22680740b 100644
--- a/tests/gem5/m5_util/test_exit.py
+++ b/tests/gem5/m5_util/test_exit.py
@@ -40,7 +40,8 @@ r'Exiting @ tick \d* because m5_exit instruction encountered'
path = joinpath(absdirpath(__file__), '..',
'test-progs', 'hello', 'bin', 'x86', 'linux')
filename = 'm5_exit'
-url = 'http://gem5.org/dist/current/test-progs/m5-exit/bin/x86/linux/m5_exit'
+url = 'http://dist.gem5.org/dist/current/test-progs/' +
+ 'm5-exit/bin/x86/linux/m5_exit'
test_program = DownloadedProgram(url, path, filename)
a = verifier.MatchRegex(m5_exit_regex)