From a28815cce96836ddf11ed19f72298a93acb70855 Mon Sep 17 00:00:00 2001 From: "Benjamin A. Beasley" Date: Wed, 8 Jan 2025 11:11:07 -0500 Subject: [PATCH] Report and skip a test regression on ppc64le --- abseil-cpp.spec | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/abseil-cpp.spec b/abseil-cpp.spec index 73c8f05..9befa51 100644 --- a/abseil-cpp.spec +++ b/abseil-cpp.spec @@ -140,7 +140,16 @@ find . -type f -name '*.cc' \ %cmake_install %check -%ctest +skips='^($.' +%ifarch ppc64le +# [Bug]: Flaky test failures in absl_failure_signal_handler_test on ppc64le in +# Fedora +# https://github.com/abseil/abseil-cpp/issues/1804 +skips="${skips}|absl_failure_signal_handler_test" +%endif +skips="${skips})$" + +%ctest --exclude-regex "${skips}" %files %license LICENSE @@ -157,6 +166,7 @@ find . -type f -name '*.cc' \ * Sat Jan 25 2025 Benjamin A. Beasley - 20211102.0-4 - Update License to SPDX - Indicate CCTZ bundling +- Report and skip a test regression on ppc64le * Fri Jul 29 2022 Benjamin A. Beasley - 20211102.0-3 - Do not leak -maes -msse4.1 into pkgconfig (fix RHBZ#2108658)