diff options
author | Max Filippov | 2019-02-18 10:42:15 +0100 |
---|---|---|
committer | Max Filippov | 2019-02-28 13:43:22 +0100 |
commit | 0ed040db363bd61bf70f9a464e98229095788bc4 (patch) | |
tree | 118b44c817ba6c07192da723da798169fcec8d22 /tests | |
parent | target/xtensa: implement PREFCTL SR (diff) | |
download | qemu-0ed040db363bd61bf70f9a464e98229095788bc4.tar.gz qemu-0ed040db363bd61bf70f9a464e98229095788bc4.tar.xz qemu-0ed040db363bd61bf70f9a464e98229095788bc4.zip |
tests/tcg/xtensa: indicate failed tests
When test suite with multiple tests fails it's not obvious which test
failed. Pring "failed" in every invocation of test_fail. Do printing
when DEBUG preprocessor macro is defined.
Signed-off-by: Max Filippov <jcmvbkbc@gmail.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/tcg/xtensa/macros.inc | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/tests/tcg/xtensa/macros.inc b/tests/tcg/xtensa/macros.inc index 4ebd30ab86..25c7ee479e 100644 --- a/tests/tcg/xtensa/macros.inc +++ b/tests/tcg/xtensa/macros.inc @@ -49,7 +49,9 @@ main: .endm .macro test name - //print test_\name +#ifdef DEBUG + print test_\name +#endif test_init test_\name: .global test_\name @@ -74,6 +76,9 @@ test_\name: l32i a2, a2, 0 movi a3, 1 s8i a3, a2, 0 +#ifdef DEBUG + print failed +#endif j 99f .endm |