aboutsummaryrefslogtreecommitdiffstats
path: root/testrunner.py
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@qt.io>2017-05-23 11:31:48 +0200
committerFriedemann Kleint <Friedemann.Kleint@qt.io>2017-06-06 14:45:13 +0000
commit88ae63d398fe1ca60802adcf5c92a2dec29b85d0 (patch)
tree1d3fa80d670e750747e1514bdb332cdb81c12829 /testrunner.py
parent1e05405a9826c4fcc98ab44814abca44741ff01f (diff)
testrunner.py/Windows: Add Clang to the path
It is required for shiboken's ApiExtractor tests. Move subroutine detectClang into utils.py for usage by testrunner.py/setup.py. Task-number: PYSIDE-431 Change-Id: I9f1984ea9fc9857ad3e7fddf621884fdc96ef52f Reviewed-by: Christian Tismer <tismer@stackless.com>
Diffstat (limited to 'testrunner.py')
-rw-r--r--testrunner.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/testrunner.py b/testrunner.py
index 96d9139a3..096457e81 100644
--- a/testrunner.py
+++ b/testrunner.py
@@ -38,6 +38,7 @@
#############################################################################
from __future__ import print_function
+from utils import detectClang
"""
testrunner
@@ -99,6 +100,16 @@ script_dir = os.getcwd()
LogEntry = namedtuple("LogEntry", ["log_dir", "build_dir"])
+def setupClang():
+ if sys.platform != "win32":
+ return
+ clangDir = detectClang()
+ if clangDir[0]:
+ clangBinDir = os.path.join(clangDir[0], 'bin')
+ path = os.environ.get('PATH')
+ if not clangBinDir in path:
+ os.environ['PATH'] = clangBinDir + os.pathsep + path
+ print("Adding %s as detected by %s to PATH" % (clangBinDir, clangDir[1]))
class BuildLog(object):
"""
@@ -773,6 +784,8 @@ if __name__ == '__main__':
q = 5 * [0]
+ setupClang()
+
# now loop over the projects and accumulate
for project in args.projects:
runner = TestRunner(builds.selected, project)