summaryrefslogtreecommitdiff
path: root/test/scons-time
diff options
context:
space:
mode:
authorWilliam Deegan <bill@baddogconsulting.com>2017-02-28 12:11:59 -0800
committerWilliam Deegan <bill@baddogconsulting.com>2017-02-28 12:11:59 -0800
commit74e51ad2173ce988bb6de4bd17b23499f056303b (patch)
treec42d125ef7b2701ec2c7a172bd4358beec1ba35e /test/scons-time
parentdcf98254d6eff4e91c0b6ba7d872bc9f65484f49 (diff)
downloadscons-74e51ad2173ce988bb6de4bd17b23499f056303b.tar.gz
fix test output read mode to not be binary py2/3
Diffstat (limited to 'test/scons-time')
-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 09c6aadc..5235d98d 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)