diff options
author | William Deegan <bill@baddogconsulting.com> | 2020-01-22 21:25:32 (GMT) |
---|---|---|
committer | William Deegan <bill@baddogconsulting.com> | 2020-01-22 21:25:32 (GMT) |
commit | f05685d70f12fa192c8cdeb8f4752b6af55beb24 (patch) | |
tree | 3cb8f65388c8e35298deb9a0fb8aa2388212dd0b /testing | |
parent | 0e7769d0eaa72c471cb3ca76ec57841956f9bdfe (diff) | |
download | SCons-f05685d70f12fa192c8cdeb8f4752b6af55beb24.zip SCons-f05685d70f12fa192c8cdeb8f4752b6af55beb24.tar.gz SCons-f05685d70f12fa192c8cdeb8f4752b6af55beb24.tar.bz2 |
updates to make tests pass on windows
Diffstat (limited to 'testing')
-rw-r--r-- | testing/framework/TestSCons.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testing/framework/TestSCons.py b/testing/framework/TestSCons.py index e3f4f47..59a739a 100644 --- a/testing/framework/TestSCons.py +++ b/testing/framework/TestSCons.py @@ -1221,7 +1221,7 @@ SConscript(sconscript) result_cached = 1 for bld_desc in check_info.cached: # each TryXXX for ext, flag in bld_desc: # each file in TryBuild - conf_filename = re.escape(os.path.join(sconf_dir, check_info.temp_filename%ext)) + conf_filename = re.escape(check_info.temp_filename%ext) if flag == self.NCR: # NCR = Non Cached Rebuild |