From f36b4d78edcecff5fc326e646d9a0ee832eda08f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=A1clav=20Kadl=C4=8D=C3=ADk?= Date: Tue, 8 Apr 2025 11:56:53 +0200 Subject: [PATCH] Limit the workaround to GCC 14 on RHEL 10 --- tests/Sanity/suite_gfortran/runtest.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Sanity/suite_gfortran/runtest.sh b/tests/Sanity/suite_gfortran/runtest.sh index 4375b9a..20c8210 100755 --- a/tests/Sanity/suite_gfortran/runtest.sh +++ b/tests/Sanity/suite_gfortran/runtest.sh @@ -126,7 +126,7 @@ rlJournalStart fi fi # https://issues.redhat.com/browse/RHEL-64922 - if [[ "$PRI_ARCH" = x86_64 ]] && rlIsRHEL 10; then + if [[ "$PRI_ARCH" = x86_64 ]] && rlIsRHEL 10 && rlTestVersion "$GCC_DUMPVERSION" '=' 14; then rlRun "rm -f $SRCROOT/gcc/testsuite/gfortran.dg/vect/pr83232.f90" fi # https://issues.redhat.com/browse/RHEL-64924