Add coverage for RHEL-39953

This commit is contained in:
Miloš Prchlík 2024-06-27 14:27:53 +02:00
commit 9552328aff
2 changed files with 30 additions and 0 deletions

View file

@ -101,6 +101,21 @@ rlJournalStart
rlLogInfo "Failed tests:\n$(sort < "$tool_log.failed")"
rlLogInfo "All tests:\n$(grep -E '^[A-Z]+:' "$tool_log.tests" | sort)"
rlPhaseEnd
rlPhaseStartTest "$tool_label / Verify interesting test cases"
if rlIsRHEL ">=9.5"; then
if [ "$TOOL" = "binutils" ]; then
rlRun "grep -E '^PASS: Check if efi app format is recognized' $tool_log.tests" 0 \
"\"Check if efi app format is recognized\" upstream test case fails for aarch64 binutils builds (https://issues.redhat.com/browse/RHEL-39953)"
else
rlLogInfo "No tests for binutils and >=RHEL-9.5.0"
fi
else
rlLogInfo "No tests for >=RHEL-9.5.0"
fi
rlPhaseEnd
done
done

View file

@ -75,6 +75,21 @@ rlJournalStart
rlLogInfo "Failed tests:\n$(sort < "$tool_log.failed")"
rlLogInfo "All tests:\n$(grep -E '^[A-Z]+:' "$tool_log.tests" | sort)"
rlPhaseEnd
rlPhaseStartTest "$tool_label / Verify interesting test cases"
if rlIsRHEL ">=9.5"; then
if [ "$TOOL" = "binutils" ]; then
rlRun "grep -E '^PASS: Check if efi app format is recognized' $tool_log.tests" \
"\"Check if efi app format is recognized\" upstream test case fails for aarch64 binutils builds (https://issues.redhat.com/browse/RHEL-39953)"
else
rlLogInfo "No tests for binutils and >=RHEL-9.5.0"
fi
else
rlLogInfo "No tests for >=RHEL-9.5.0"
fi
rlPhaseEnd
done
rlPhaseStartCleanup