Add coverage for RHEL-39953
This commit is contained in:
parent
f494379f4c
commit
9552328aff
2 changed files with 30 additions and 0 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue