From 5d6446a7bd456fd07059668ef6c75f0041f31e67 Mon Sep 17 00:00:00 2001 From: Jiri Kortus Date: Wed, 27 Mar 2019 17:33:35 +0100 Subject: [PATCH] 'compose info' is 'compose details' on RHEL-7 Add the correct composer-cli command 'compose details' in places where 'compose info' was still used on RHEL-7 (see commit 808454b5615940d88e4c9124578f1b67a7140d4d) Related: rhbz#1687595 --- tests/cli/test_compose_live-iso.sh | 2 +- tests/cli/test_compose_qcow2.sh | 2 +- tests/cli/test_compose_tar.sh | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/cli/test_compose_live-iso.sh b/tests/cli/test_compose_live-iso.sh index 8535ec23..15ee32b0 100755 --- a/tests/cli/test_compose_live-iso.sh +++ b/tests/cli/test_compose_live-iso.sh @@ -29,7 +29,7 @@ rlJournalStart rlPhaseStartTest "compose finished" if [ -n "$UUID" ]; then - until $CLI compose info $UUID | grep FINISHED; do + until $CLI compose details $UUID | grep FINISHED; do sleep 20 rlLogInfo "Waiting for compose to finish ..." done; diff --git a/tests/cli/test_compose_qcow2.sh b/tests/cli/test_compose_qcow2.sh index 52838542..00b877d4 100755 --- a/tests/cli/test_compose_qcow2.sh +++ b/tests/cli/test_compose_qcow2.sh @@ -54,7 +54,7 @@ __EOF__ rlPhaseStartTest "compose finished" if [ -n "$UUID" ]; then - until $CLI compose info $UUID | grep FINISHED; do + until $CLI compose details $UUID | grep FINISHED; do sleep 20 rlLogInfo "Waiting for compose to finish ..." done; diff --git a/tests/cli/test_compose_tar.sh b/tests/cli/test_compose_tar.sh index adb10fef..ecf60368 100755 --- a/tests/cli/test_compose_tar.sh +++ b/tests/cli/test_compose_tar.sh @@ -27,7 +27,7 @@ rlJournalStart rlPhaseStartTest "compose finished" if [ -n "$UUID" ]; then - until $CLI compose info $UUID | grep FINISHED; do + until $CLI compose details $UUID | grep FINISHED; do sleep 10 rlLogInfo "Waiting for compose to finish ..." done;