diff options
author | Richard Henderson | 2020-03-05 17:09:19 +0100 |
---|---|---|
committer | Peter Maydell | 2020-03-05 17:09:19 +0100 |
commit | e2d30df9079a277c7c98a55be91dd28a7f1b8e1c (patch) | |
tree | 074ed83706ddfdf31d67dbf47ee8c5395123183c /tests/tcg | |
parent | target/arm: Honor the HCR_EL2.TTLB bit (diff) | |
download | qemu-e2d30df9079a277c7c98a55be91dd28a7f1b8e1c.tar.gz qemu-e2d30df9079a277c7c98a55be91dd28a7f1b8e1c.tar.xz qemu-e2d30df9079a277c7c98a55be91dd28a7f1b8e1c.zip |
tests/tcg/aarch64: Add newline in pauth-1 printf
Make the output just a bit prettier when running by hand.
Cc: Alex Bennée <alex.bennee@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Message-id: 20200229012811.24129-13-richard.henderson@linaro.org
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'tests/tcg')
-rw-r--r-- | tests/tcg/aarch64/pauth-1.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/tcg/aarch64/pauth-1.c b/tests/tcg/aarch64/pauth-1.c index ea0984ea82..d3878cbeb6 100644 --- a/tests/tcg/aarch64/pauth-1.c +++ b/tests/tcg/aarch64/pauth-1.c @@ -29,7 +29,7 @@ int main() } perc = (float) count / (float) (TESTS * 2); - printf("Ptr Check: %0.2f%%", perc * 100.0); + printf("Ptr Check: %0.2f%%\n", perc * 100.0); assert(perc > 0.95); return 0; } |