]> xenbits.xensource.com Git - qemu-xen.git/commitdiff
tests/tcg/aarch64: Add newline in pauth-1 printf
authorRichard Henderson <richard.henderson@linaro.org>
Thu, 5 Mar 2020 16:09:19 +0000 (16:09 +0000)
committerPeter Maydell <peter.maydell@linaro.org>
Thu, 5 Mar 2020 16:09:19 +0000 (16:09 +0000)
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>
tests/tcg/aarch64/pauth-1.c

index ea0984ea823de31a19627a331f2360ab2966147f..d3878cbeb6e50057ffca5c5e539ae8b6825d8774 100644 (file)
@@ -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;
 }