File tree 1 file changed +4
-3
lines changed
1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -1056,13 +1056,14 @@ def runTest(self):
1056
1056
cmd = "zypper install -y make gcc wget"
1057
1057
self .c .run_command (cmd , timeout = 120 )
1058
1058
try :
1059
- self .c .run_command ("wget %s -P /tmp" % self .url )
1059
+ self .c .run_command ("rm -rf /tmp/ebizzy*" , timeout = 120 )
1060
+ self .c .run_command ("wget %s -P /tmp" % self .url , timeout = 120 )
1060
1061
except CommandFailed :
1061
1062
self .fail ("Failed to download ebizzy tar" )
1062
- self .c .run_command ("tar -xf /tmp/ebizzy*.tar.gz -C /tmp" )
1063
+ self .c .run_command ("tar -xf /tmp/ebizzy*.tar.gz -C /tmp" , timeout = 120 )
1063
1064
self .c .run_command ("cd /tmp/ebizzy*/" )
1064
1065
try :
1065
- self .c .run_command ("./configure; make" )
1066
+ self .c .run_command ("./configure; make" , timeout = 120 )
1066
1067
except CommandFailed :
1067
1068
self .fail ("Failed to compile ebizzy" )
1068
1069
self .c .run_command ("./ebizzy -S 60&" )
You can’t perform that action at this time.
0 commit comments