summaryrefslogtreecommitdiffstats
path: root/test/scons-time/run
diff options
context:
space:
mode:
authorWilliam Deegan <bill@baddogconsulting.com>2017-02-28 20:11:59 (GMT)
committerWilliam Deegan <bill@baddogconsulting.com>2017-02-28 20:11:59 (GMT)
commitb8326ebfe788f9f165773cd4b2e649b6951a6e26 (patch)
treec42d125ef7b2701ec2c7a172bd4358beec1ba35e /test/scons-time/run
parente3b86af463e2a9eef98cd7c74469a5fff96f19c9 (diff)
downloadSCons-b8326ebfe788f9f165773cd4b2e649b6951a6e26.zip
SCons-b8326ebfe788f9f165773cd4b2e649b6951a6e26.tar.gz
SCons-b8326ebfe788f9f165773cd4b2e649b6951a6e26.tar.bz2
fix test output read mode to not be binary py2/3
Diffstat (limited to 'test/scons-time/run')
-rw-r--r--test/scons-time/run/aegis.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/scons-time/run/aegis.py b/test/scons-time/run/aegis.py
index 09c6aad..5235d98 100644
--- a/test/scons-time/run/aegis.py
+++ b/test/scons-time/run/aegis.py
@@ -64,7 +64,7 @@ expect = [
'SCONS_LIB_DIR = %s' % test.tempdir_re('src', 'engine'),
]
-content = test.read(test.workpath('foo-321-2.log'))
+content = test.read(test.workpath('foo-321-2.log'),mode='r')
def re_find(content, line):
return re.search(line, content)