diff options
author | Alex Bennée | 2019-12-19 13:13:44 +0100 |
---|---|---|
committer | Alex Bennée | 2020-01-09 12:41:29 +0100 |
commit | 486e58b188c1b093a8f64d4b5cd11ff5c3514cb2 (patch) | |
tree | a412205d5b4b7f498e3fe338f22cb43864d81f88 /tests/tcg/aarch64 | |
parent | tests/tcg: extract __semi_call into a header and expand (diff) | |
download | qemu-486e58b188c1b093a8f64d4b5cd11ff5c3514cb2.tar.gz qemu-486e58b188c1b093a8f64d4b5cd11ff5c3514cb2.tar.xz qemu-486e58b188c1b093a8f64d4b5cd11ff5c3514cb2.zip |
tests/tcg: add user version of dumb-as-bricks semiconsole test
There are linux-user users of semihosting so we'd better check things
work for them as well.
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'tests/tcg/aarch64')
-rw-r--r-- | tests/tcg/aarch64/Makefile.target | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/tcg/aarch64/Makefile.target b/tests/tcg/aarch64/Makefile.target index 96d2321045..df3fe8032c 100644 --- a/tests/tcg/aarch64/Makefile.target +++ b/tests/tcg/aarch64/Makefile.target @@ -32,4 +32,11 @@ run-plugin-semihosting-with-%: $(call strip-plugin,$<) 2> $<.err, \ "$< on $(TARGET_NAME) with $*") +AARCH64_TESTS += semiconsole +run-semiconsole: semiconsole + $(call skip-test, $<, "MANUAL ONLY") + +run-plugin-semiconsole-with-%: + $(call skip-test, $<, "MANUAL ONLY") + TESTS += $(AARCH64_TESTS) |