summaryrefslogtreecommitdiffstats
path: root/test/IDL
diff options
context:
space:
mode:
authorWilliam Deegan <bill@baddogconsulting.com>2017-03-12 23:54:59 (GMT)
committerWilliam Deegan <bill@baddogconsulting.com>2017-03-12 23:54:59 (GMT)
commite9a52c074c4382ddaab5bee8054acc490bb00874 (patch)
tree28f33422f587ef1aa0794b66f1ae29e5b5fe4d43 /test/IDL
parent4ebf54bf58ea17b50cae986c501bfa04338cba84 (diff)
downloadSCons-e9a52c074c4382ddaab5bee8054acc490bb00874.zip
SCons-e9a52c074c4382ddaab5bee8054acc490bb00874.tar.gz
SCons-e9a52c074c4382ddaab5bee8054acc490bb00874.tar.bz2
get rid of rb/wb
Diffstat (limited to 'test/IDL')
-rw-r--r--test/IDL/MIDLCOM.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/test/IDL/MIDLCOM.py b/test/IDL/MIDLCOM.py
index 0525592..a478da0 100644
--- a/test/IDL/MIDLCOM.py
+++ b/test/IDL/MIDLCOM.py
@@ -39,12 +39,12 @@ test = TestSCons.TestSCons()
test.write('mymidl.py', """
import os.path
import sys
-out_tlb = open(sys.argv[1], 'wb')
+out_tlb = open(sys.argv[1], 'w')
base = os.path.splitext(sys.argv[1])[0]
-out_h = open(base + '.h', 'wb')
-out_c = open(base + '_i.c', 'wb')
+out_h = open(base + '.h', 'w')
+out_c = open(base + '_i.c', 'w')
for f in sys.argv[2:]:
- infile = open(f, 'rb')
+ infile = open(f, 'r')
for l in [l for l in infile.readlines() if l != '/*midl*/\\n']:
out_tlb.write(l)
out_h.write(l)
@@ -62,9 +62,9 @@ test.write('aaa.idl', "aaa.idl\n/*midl*/\n")
test.run(arguments = '.')
-test.must_match('aaa.tlb', "aaa.idl\n")
-test.must_match('aaa.h', "aaa.idl\n")
-test.must_match('aaa_i.c', "aaa.idl\n")
+test.must_match('aaa.tlb', "aaa.idl\n", mode='r')
+test.must_match('aaa.h', "aaa.idl\n", mode='r')
+test.must_match('aaa_i.c', "aaa.idl\n", mode='r')
test.up_to_date(options = '--debug=explain', arguments = 'aaa.tlb')