diff options
author | William Deegan <bill@baddogconsulting.com> | 2020-01-30 23:03:02 (GMT) |
---|---|---|
committer | William Deegan <bill@baddogconsulting.com> | 2020-01-30 23:03:02 (GMT) |
commit | 0d4c31c7adc62f215e6a73d2efa7c2787bee6c83 (patch) | |
tree | 650c24f1eab8206073a002df5b33925c4c8d958a /test/question | |
parent | 209d73e6c78978371915f14384bb8fff1902e386 (diff) | |
download | SCons-0d4c31c7adc62f215e6a73d2efa7c2787bee6c83.zip SCons-0d4c31c7adc62f215e6a73d2efa7c2787bee6c83.tar.gz SCons-0d4c31c7adc62f215e6a73d2efa7c2787bee6c83.tar.bz2 |
Fix tests broken by Configure temp file naming changes
Diffstat (limited to 'test/question')
-rw-r--r-- | test/question/Configure.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/question/Configure.py b/test/question/Configure.py index 88b0784..7df29f5 100644 --- a/test/question/Configure.py +++ b/test/question/Configure.py @@ -86,7 +86,7 @@ test.must_not_exist(test.workpath("config.log")) stderr=r""" scons: \*\*\* Cannot update configure test "%s" within a dry-run\. File \S+, line \S+, in \S+ -""" % re.escape(os.path.join("config.test", "conftest_0.in")) +""" % re.escape(os.path.join("config.test", "conftest_b10a8db164e0754105b7a99be72e3fe5_0.in")) test.subdir('config.test') @@ -94,7 +94,7 @@ test.run(arguments="-q aaa.out",stderr=stderr,status=2) test.must_not_exist(test.workpath("config.test", ".cache")) test.must_not_exist(test.workpath("config.test", "conftest_0")) -test.must_not_exist(test.workpath("config.test", "conftest_0.in")) +test.must_not_exist(test.workpath("config.test", "conftest_b10a8db164e0754105b7a99be72e3fe5_0.in")) test.must_not_exist(test.workpath("config.log")) # test that no error is raised, if all targets are up-to-date. In this |