summaryrefslogtreecommitdiff
path: root/QMTest
diff options
context:
space:
mode:
authorgrbd <garlicbready@googlemail.com>2017-06-21 00:45:37 +0100
committergrbd <garlicbready@googlemail.com>2017-06-21 00:45:37 +0100
commitb3cdbc19c6969db1afd6083b1d81bd187420a661 (patch)
tree7963aa7e7ec6888c2afe1abb824b85720c5e0ccd /QMTest
parent4d70957cbadda437c37e0a5067b94be104a95bfc (diff)
downloadscons-b3cdbc19c6969db1afd6083b1d81bd187420a661.tar.gz
Fix the directory seperator for Fixture directories to be windows compatible
Diffstat (limited to 'QMTest')
-rw-r--r--QMTest/TestSCons.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/QMTest/TestSCons.py b/QMTest/TestSCons.py
index 66d6b23a..17a9edab 100644
--- a/QMTest/TestSCons.py
+++ b/QMTest/TestSCons.py
@@ -270,7 +270,7 @@ class TestSCons(TestCommon):
SCons.Node.FS.default_fs = SCons.Node.FS.FS()
try:
- self.fixture_dirs = (os.environ['FIXTURE_DIRS']).split(':')
+ self.fixture_dirs = (os.environ['FIXTURE_DIRS']).split(';')
except KeyError:
pass