diff --git a/Smoke/start-stop-all-binaries/runtest.sh b/Smoke/start-stop-all-binaries/runtest.sh index 67e519e..054f491 100755 --- a/Smoke/start-stop-all-binaries/runtest.sh +++ b/Smoke/start-stop-all-binaries/runtest.sh @@ -77,9 +77,14 @@ for i in "ghostscript" "gs" "gsnd" "ps2ascii";do done rlPhaseStartTest 'pdf2dsc' - rlRun "pdf2dsc IBM-RED-HAT-Press-Release-10-2018.pdf &> $LOG" - rlRun "cff $LOG" - rlRun "file IBM-RED-HAT-Press-Release-10-2018.dsc|grep DSC" + if rlIsRHELLike '>10' + then + rlLog "pdf2dsc is not maintained upstream, skipping" + else + rlRun "pdf2dsc IBM-RED-HAT-Press-Release-10-2018.pdf &> $LOG" + rlRun "cff $LOG" + rlRun "file IBM-RED-HAT-Press-Release-10-2018.dsc|grep DSC" + fi rlPhaseEnd rlPhaseStartTest 'pdf2ps'