diff options
author | Hoa Nguyen <hoanguyen@ucdavis.edu> | 2019-02-28 18:26:07 -0800 |
---|---|---|
committer | Hoa Nguyen <hoanguyen@ucdavis.edu> | 2019-04-12 06:15:27 +0000 |
commit | 6b81e087c239e74a84405805bc8a3f6f3c1798a4 (patch) | |
tree | eddf7b5eb3875aa7928c278c5d59a41713f3c4fc /tests | |
parent | 04bc162f152b4a67aad921b4965353cb73cbc820 (diff) | |
download | gem5-6b81e087c239e74a84405805bc8a3f6f3c1798a4.tar.xz |
tests: add riscv to cpu tests
Change-Id: Id8e767afbb74f79b980d8160eefc13e7f529f1c3
Signed-off-by: Hoa Nguyen <hoanguyen@ucdavis.edu>
Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/16889
Reviewed-by: Jason Lowe-Power <jason@lowepower.com>
Maintainer: Jason Lowe-Power <jason@lowepower.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/gem5/cpu_tests/test.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/gem5/cpu_tests/test.py b/tests/gem5/cpu_tests/test.py index 6fb68a9db..f34b23d07 100644 --- a/tests/gem5/cpu_tests/test.py +++ b/tests/gem5/cpu_tests/test.py @@ -38,6 +38,7 @@ workloads = ('Bubblesort','FloatMM') valid_isas = { 'x86': ('AtomicSimpleCPU', 'TimingSimpleCPU', 'DerivO3CPU'), 'arm': ('AtomicSimpleCPU', 'TimingSimpleCPU', 'MinorCPU', 'DerivO3CPU'), + 'riscv': ('AtomicSimpleCPU', 'TimingSimpleCPU', 'MinorCPU', 'DerivO3CPU'), } |