From ca171424ebed55bf2c31ebbe86d2ce9ccfe39311 Mon Sep 17 00:00:00 2001 From: Lars Karlitski Date: Mon, 20 May 2019 14:44:30 +0200 Subject: [PATCH] test_compose_tar: Be less verbose A huge chunk of the output log is tar's file list. Remove that to make the log more readable. --- tests/cli/test_compose_tar.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/cli/test_compose_tar.sh b/tests/cli/test_compose_tar.sh index 2cce5914..c0439ebd 100755 --- a/tests/cli/test_compose_tar.sh +++ b/tests/cli/test_compose_tar.sh @@ -45,7 +45,7 @@ rlJournalStart rlPhaseStartTest "Verify tar image with systemd-nspawn" if [ -f /usr/bin/systemd-nspawn ]; then NSPAWN_DIR=`mktemp -d /var/tmp/nspawn.XXXX` - rlRun -t -c "tar -xJvf $IMAGE -C $NSPAWN_DIR" + rlRun -t -c "tar -xJf $IMAGE -C $NSPAWN_DIR" # verify we can run a container with this image rlRun -t -c "systemd-nspawn -D $NSPAWN_DIR cat /etc/redhat-release"