summaryrefslogtreecommitdiffstats
path: root/testing
diff options
context:
space:
mode:
authorWilliam Deegan <bill@baddogconsulting.com>2019-04-27 21:54:17 (GMT)
committerGitHub <noreply@github.com>2019-04-27 21:54:17 (GMT)
commitfdea3fb50bc90bcf8500bcb7321a3d25d2023177 (patch)
treeac4775eeecf84eb5348014e9cd5d22c59635b967 /testing
parent19a1b88895f49014cb5a9079a85887c8bb80a20d (diff)
parentf092bd74ea33331d42bc73ee8b39c9b726baf8ad (diff)
downloadSCons-fdea3fb50bc90bcf8500bcb7321a3d25d2023177.zip
SCons-fdea3fb50bc90bcf8500bcb7321a3d25d2023177.tar.gz
SCons-fdea3fb50bc90bcf8500bcb7321a3d25d2023177.tar.bz2
Merge pull request #3359 from bdbaddog/fortran_issue_3135
Fix Issue #3135 - Type Bound procedures in Fortran submodules
Diffstat (limited to 'testing')
-rw-r--r--testing/framework/TestCmd.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/testing/framework/TestCmd.py b/testing/framework/TestCmd.py
index e24371c..2d54d72 100644
--- a/testing/framework/TestCmd.py
+++ b/testing/framework/TestCmd.py
@@ -972,6 +972,12 @@ class TestCmd(object):
self.subdir(subdir)
self.fixture_dirs = []
+ try:
+ self.fixture_dirs = (os.environ['FIXTURE_DIRS']).split(os.pathsep)
+ except KeyError:
+ pass
+
+
def __del__(self):
self.cleanup()