glog: Disable symbolize test suite on ppc64 (#461009)

This commit is contained in:
Cosima Neidahl
2025-11-26 12:52:27 +00:00
committed by GitHub
+5
View File
@@ -75,6 +75,11 @@ stdenv.mkDerivation (finalAttrs: {
]
++ [
"logging" # works around segfaults for now
]
++ lib.optionals (stdenv.hostPlatform.isPower64 && stdenv.hostPlatform.isBigEndian) [
# CHECK_STREQ failed: symbol == "non_inline_func" ((/build/source/build/symbolize_unittest+0x1000b840) vs. non_inline_func)
# TestWithPCInsideNonInlineFunction doesn't use TEST(), so can't exclude via GTEST_FILTER
"symbolize"
];
excludedTestsRegex = lib.optionalString (
excludedTests != [ ]