]> www.infradead.org Git - users/dwmw2/qemu.git/commitdiff
tests/tcg: Skip failing ppc64 multi-threaded tests
authorNicholas Piggin <npiggin@gmail.com>
Thu, 25 Jul 2024 14:50:31 +0000 (00:50 +1000)
committerNicholas Piggin <npiggin@gmail.com>
Thu, 25 Jul 2024 23:21:06 +0000 (09:21 +1000)
In Gitlab CI, some ppc64 multi-threaded tcg tests crash when run in the
clang-user job with an assertion failure in glibc that seems to
indicate corruption:

  signals: allocatestack.c:223: allocate_stack:
    Assertion `powerof2 (pagesize_m1 + 1)' failed.

Disable these tests for now.

Signed-off-by: Nicholas Piggin <npiggin@gmail.com>
tests/tcg/ppc64/Makefile.target

index 8c3e4e4038170d674b8c9d30dd403a4b12609c26..509a20be2b09ada69d1f9d64059f778a792890a5 100644 (file)
@@ -11,6 +11,18 @@ config-cc.mak: Makefile
 
 -include config-cc.mak
 
+# multi-threaded tests are known to fail (e.g., clang-user CI job)
+# See: https://gitlab.com/qemu-project/qemu/-/issues/2456
+run-signals: signals
+       $(call skip-test, $<, "BROKEN (flaky with clang) ")
+run-plugin-signals-with-%:
+       $(call skip-test, $<, "BROKEN (flaky with clang) ")
+
+run-threadcount: threadcount
+       $(call skip-test, $<, "BROKEN (flaky with clang) ")
+run-plugin-threadcount-with-%:
+       $(call skip-test, $<, "BROKEN (flaky with clang) ")
+
 ifneq ($(CROSS_CC_HAS_POWER8_VECTOR),)
 PPC64_TESTS=bcdsub non_signalling_xscv
 endif