From 92a1254f0c869ff03421962bb3d24b2e2a5cd9aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=A1clav=20Kadl=C4=8D=C3=ADk?= Date: Thu, 7 Nov 2024 11:13:41 +0100 Subject: [PATCH] Work around RHEL-66174 --- tests/Sanity/suite_gfortran/runtest.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/Sanity/suite_gfortran/runtest.sh b/tests/Sanity/suite_gfortran/runtest.sh index 721b959..1cac57c 100755 --- a/tests/Sanity/suite_gfortran/runtest.sh +++ b/tests/Sanity/suite_gfortran/runtest.sh @@ -132,6 +132,11 @@ rlJournalStart if [[ $(arch) = ppc64le ]] && rlTestVersion "$GCC_DUMPVERSION" '=' 14; then rlRun "rm -f $SRCROOT/gcc/testsuite/gfortran.dg/ieee/comparisons_3.F90" fi + # https://issues.redhat.com/browse/RHEL-66174 + if [[ "$(arch)" = ppc64le ]] && rlIsRHEL 10; then + rlRun "rm -f $SRCROOT/gcc/testsuite/gfortran.dg/default_format_{,denormal_}2.f90" + rlRun "rm -f $SRCROOT/gcc/testsuite/gfortran.dg/large_real_kind_form_io_2.f90" + fi if rlIsFedora '<40'; then rlRun "rm -f $SRCROOT/gcc/testsuite/gfortran.dg/pr113363.f90" fi