diff options
author | vboxsync <vboxsync@cfe28804-0f27-0410-a406-dd0f0b0b656f> | 2017-03-30 13:41:43 +0000 |
---|---|---|
committer | vboxsync <vboxsync@cfe28804-0f27-0410-a406-dd0f0b0b656f> | 2017-03-30 13:41:43 +0000 |
commit | 1252075409cd92887032a58414dbf2f320437ae7 (patch) | |
tree | a24e1c8753fd8ca509ee8220fe9834d3b5676349 /src/VBox/ValidationKit/testdriver | |
parent | fa3b2f3833418de36b529f11e983ca3de0905515 (diff) | |
download | VirtualBox-svn-1252075409cd92887032a58414dbf2f320437ae7.tar.gz |
ValidationKit: increase the timeout before we kill msiexec from 15 seconds to 120 seconds
git-svn-id: https://www.virtualbox.org/svn/vbox/trunk@66360 cfe28804-0f27-0410-a406-dd0f0b0b656f
Diffstat (limited to 'src/VBox/ValidationKit/testdriver')
-rwxr-xr-x | src/VBox/ValidationKit/testdriver/vboxinstaller.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/VBox/ValidationKit/testdriver/vboxinstaller.py b/src/VBox/ValidationKit/testdriver/vboxinstaller.py index dc64a0b06fb..a6d942f3a05 100755 --- a/src/VBox/ValidationKit/testdriver/vboxinstaller.py +++ b/src/VBox/ValidationKit/testdriver/vboxinstaller.py @@ -837,7 +837,7 @@ class VBoxInstallerTestDriver(TestDriverBase): time.sleep(10); # Give related MSI process a chance to clean up after we killed the driver installer. if self._isProcessPresent('msiexec'): - time.sleep(15); # In the hope that it goes away. + time.sleep(120) # In the hope that it goes away. cKilled = self._killProcessesByName('msiexec', 'MSI driver installation'); if cKilled > 0: time.sleep(16); # fudge. |