diff options
author | Max Filippov <jcmvbkbc@gmail.com> | 2017-11-03 20:30:30 -0700 |
---|---|---|
committer | Max Filippov <jcmvbkbc@gmail.com> | 2018-01-09 09:55:38 -0800 |
commit | e55239e2b65dbef085917e2dcc7336276877dfed (patch) | |
tree | 4e340043de7172093a6c7f0bf563145164ad367d /tests | |
parent | 33071f6888913ef2c6600e827bf63bbb86e249a8 (diff) | |
download | qemu-e55239e2b65dbef085917e2dcc7336276877dfed.zip qemu-e55239e2b65dbef085917e2dcc7336276877dfed.tar.gz qemu-e55239e2b65dbef085917e2dcc7336276877dfed.tar.bz2 |
target/xtensa: tests: fix memctl SR test
memctl SR is not available on dc232b, as it was introduced in more
recent hardware release. Now that this information is available through
the libisa the test fails. Fix the test.
Signed-off-by: Max Filippov <jcmvbkbc@gmail.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/tcg/xtensa/test_sr.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/tcg/xtensa/test_sr.S b/tests/tcg/xtensa/test_sr.S index 42e3e5e..052f1e0 100644 --- a/tests/tcg/xtensa/test_sr.S +++ b/tests/tcg/xtensa/test_sr.S @@ -44,7 +44,6 @@ test_end test_sr acchi, 1 test_sr acclo, 1 -test_sr /*memctl*/97, 0 test_sr_mask /*atomctl*/99, 0, 0 test_sr_mask /*br*/4, 0, 0 test_sr_mask /*cacheattr*/98, 0, 0 @@ -76,6 +75,7 @@ test_sr lcount, 1 test_sr lend, 1 test_sr litbase, 1 test_sr m0, 1 +test_sr_mask /*memctl*/97, 0, 0 test_sr misc0, 1 test_sr_mask /*prefctl*/40, 0, 0 test_sr_mask /*prid*/235, 0, 1 |