summaryrefslogtreecommitdiffstats
path: root/CHANGES.txt
diff options
context:
space:
mode:
authorMats Wichmann <mats@linux.com>2022-04-05 18:29:32 (GMT)
committerMats Wichmann <mats@linux.com>2022-04-05 18:29:32 (GMT)
commitf0f5657f3214bf50f56cf076c9ecbe37c1fd0d75 (patch)
tree95d11da9cdf402136b10447c88e622ed7a2c1222 /CHANGES.txt
parent4b8a75d285cad857f491d4aca45a9eeab077a62f (diff)
downloadSCons-f0f5657f3214bf50f56cf076c9ecbe37c1fd0d75.zip
SCons-f0f5657f3214bf50f56cf076c9ecbe37c1fd0d75.tar.gz
SCons-f0f5657f3214bf50f56cf076c9ecbe37c1fd0d75.tar.bz2
test framework: fix exception on timeout
If the framework wait_for() method actually times out, it tries to return stdout and stderr by calling the framework methods of those names. The stdout() method was protected against the message not having been captured (as is the case on timeout). Updated the stderr() method to use the same technique. Signed-off-by: Mats Wichmann <mats@linux.com>
Diffstat (limited to 'CHANGES.txt')
-rwxr-xr-xCHANGES.txt1
1 files changed, 1 insertions, 0 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index c1fa7d2..8390f00 100755
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -73,6 +73,7 @@ RELEASE VERSION/DATE TO BE FILLED IN LATER
- Renamed ParseFlag's internal data structure to "mapping" instead of
"dict" (avoid redefining builtin)
- Fix an old use-before-set bug in tex tool (issue #2888)
+ - Fix a test harness exception returning stderr if a wait_for timed out.
From Zhichang Yu:
- Added MSVC_USE_SCRIPT_ARGS variable to pass arguments to MSVC_USE_SCRIPT.