tests: remove --test=2 from compose_sanity

This ensures that after canceling a compose, the next one can be finished.

(cherry picked from commit 2ee92b75b0)

Related: rhbz#1788461
This commit is contained in:
Jakub Rusz 2020-01-15 14:04:26 +01:00 committed by Alexander Todorov
parent 96c65beb01
commit 2a310efdcf

View File

@ -42,15 +42,22 @@ rlJournalStart
else
rlFail "Compose UUID is empty!"
fi
# check if anaconda is really running
until ps -axo comm,pid | grep '^anaconda'; do
sleep 10
rlLogInfo "Waiting for anaconda to start running..."
done;
rlPhaseEnd
rlPhaseStartTest "cancel compose"
rlRun -t -c "$CLI compose cancel $UUID"
rlRun -t -c "$CLI compose info $UUID" 1 "compose is canceled"
rlAssertNotExists "/var/run/anaconda.pid"
rlPhaseEnd
rlPhaseStartTest "compose start again"
UUID=`$CLI --test=2 compose start example-http-server tar`
UUID=`$CLI compose start example-http-server tar`
rlAssertEquals "exit code should be zero" $? 0
UUID=`echo $UUID | cut -f 2 -d' '`