summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/gem5/.testignore12
-rw-r--r--tests/gem5/hello_se/test_hello_se.py8
2 files changed, 18 insertions, 2 deletions
diff --git a/tests/gem5/.testignore b/tests/gem5/.testignore
new file mode 100644
index 000000000..99911b843
--- /dev/null
+++ b/tests/gem5/.testignore
@@ -0,0 +1,12 @@
+test-hello-RISCV-opt
+test-hello-RISCV-debug
+test-hello-RISCV-fast
+test-hello-SPARC-opt
+test-hello-SPARC-debug
+test-hello-SPARC-fast
+test-hello-MIPS-opt
+test-hello-MIPS-debug
+test-hello-MIPS-fast
+test-hello-ALPHA-opt
+test-hello-ALPHA-debug
+test-hello-ALPHA-fast
diff --git a/tests/gem5/hello_se/test_hello_se.py b/tests/gem5/hello_se/test_hello_se.py
index cc62efb71..3ebf40cce 100644
--- a/tests/gem5/hello_se/test_hello_se.py
+++ b/tests/gem5/hello_se/test_hello_se.py
@@ -34,9 +34,13 @@ from testlib import *
test_progs = {
'x86': ('hello64-static', 'hello64-dynamic', 'hello32-static'),
'arm': ('hello64-static', 'hello32-static'),
+ 'alpha': ('hello',),
+ 'mips': ('hello',),
+ 'riscv': ('hello',),
+ 'sparc': ('hello',)
}
-urlbase = 'http://gem5.org/dist/current/test-progs/hello/bin/'
+urlbase = 'http://dist.gem5.org/dist/current/test-progs/hello/bin/'
for isa in test_progs:
for binary in test_progs[isa]:
import os
@@ -52,7 +56,7 @@ for isa in test_progs:
)
gem5_verify_config(
- name='test'+binary,
+ name='test-'+binary,
fixtures=(hello_program,),
verifiers=verifiers,
config=joinpath(config.base_dir, 'configs', 'example','se.py'),