Limit the workaround to GCC 14 on RHEL 10

This commit is contained in:
Václav Kadlčík 2025-04-08 11:56:53 +02:00
commit f36b4d78ed

View file

@ -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