From e91e256738c3831e2be7578d50264ae7ad2e5a32 Mon Sep 17 00:00:00 2001 From: Trevor Cooper Date: Mon, 12 Aug 2024 16:18:21 -0700 Subject: [PATCH] canonicalize tar command and archive extension --- tests/autocloud.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/autocloud.pm b/tests/autocloud.pm index 9388055b..fe38ed00 100644 --- a/tests/autocloud.pm +++ b/tests/autocloud.pm @@ -29,7 +29,7 @@ sub run { send_key "alt-f2"; console_login(user => get_var("USER_LOGIN", "test"), password => get_var("USER_PASSWORD", "weakpassword")); assert_script_run "curl -O https://openqa.rockylinux.org/qa/tunirtests.tar.gz"; - assert_script_run "tar xvf tunirtests.tar.gz"; + assert_script_run "tar -xvzf tunirtests.tar.gz"; assert_script_run "sudo python3 -m unittest tunirtests.atomictests.TestAtomic01Status -v"; _soft_fail_run "tunirtests.nongatingtests.TunirNonGatingtests"; _soft_fail_run "tunirtests.nongatingtests.TunirNonGatingtestsCpio";