[sysadmin/ci-tooling] helpers: Ensure all variants of names that kioslave.exe can hide under are found and killed after running tests to ensure our builders don't get stuck,
Ben Cooksley
null at kde.org
Sat Sep 19 10:48:11 BST 2020
Git commit 5c55d45159099d6addff47776b62b8699ce750e9 by Ben Cooksley.
Committed on 19/09/2020 at 09:47.
Pushed by bcooksley into branch 'master'.
Ensure all variants of names that kioslave.exe can hide under are found and killed after running tests to ensure our builders don't get stuck,
CCMAIL: kde-frameworks-devel at kde.org
M +2 -1 helpers/run-tests.py
https://invent.kde.org/sysadmin/ci-tooling/commit/5c55d45159099d6addff47776b62b8699ce750e9
diff --git a/helpers/run-tests.py b/helpers/run-tests.py
index 42e3a08..14fbe06 100755
--- a/helpers/run-tests.py
+++ b/helpers/run-tests.py
@@ -211,8 +211,9 @@ if sys.platform == 'win32':
subprocess.call("taskkill /f /T /im kdeinit5.exe", shell=True)
subprocess.call("taskkill /f /T /im test_crasher.exe", shell=True)
subprocess.call("taskkill /f /T /im dbus-daemon.exe", shell=True)
- time.sleep( 60 )
+ time.sleep( 30 )
subprocess.call("taskkill /f /T /im kioslave.exe", shell=True)
+ subprocess.call("taskkill /f /T /im kioslave5.exe", shell=True)
subprocess.call("taskkill /f /T /im vctip.exe", shell=True)
if sys.platform == 'freebsd12':
More information about the Kde-frameworks-devel
mailing list