From a441a9d7a6970139cdfe0f8d19391da45473f336 Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Fri, 6 May 2022 14:08:04 -0700 Subject: [PATCH] _live_build: give mock tool installation longer to run It timed out in a Rawhide update test. Signed-off-by: Adam Williamson --- tests/_live_build.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/_live_build.pm b/tests/_live_build.pm index 347c638c..cd37e265 100644 --- a/tests/_live_build.pm +++ b/tests/_live_build.pm @@ -62,7 +62,7 @@ sub run { # upload the kickstart so we can check it upload_logs "openqa.ks"; # now install the tools into the mock - assert_script_run "mock -r openqa --isolation=simple --install bash coreutils glibc-all-langpacks lorax-lmc-novirt selinux-policy-targeted shadow-utils util-linux", 300; + assert_script_run "mock -r openqa --isolation=simple --install bash coreutils glibc-all-langpacks lorax-lmc-novirt selinux-policy-targeted shadow-utils util-linux", 600; # now make the image build directory inside the mock root and put the kickstart there assert_script_run 'mock -r openqa --isolation=simple --chroot "mkdir -p /chroot_tmpdir"'; assert_script_run "mock -r openqa --isolation=simple --copyin openqa.ks /chroot_tmpdir";