summaryrefslogtreecommitdiff
path: root/test/MSVC
diff options
context:
space:
mode:
authorWilliam Deegan <bill@baddogconsulting.com>2017-03-12 21:35:07 -0400
committerWilliam Deegan <bill@baddogconsulting.com>2017-03-12 21:35:07 -0400
commit527b159d630181379fdceff7abd34861aea37d27 (patch)
treea5877f500ec2055c26f0f88e361c102079bf2220 /test/MSVC
parent4fab977e604b3b18e5de778fa1508f968e26b357 (diff)
downloadscons-527b159d630181379fdceff7abd34861aea37d27.tar.gz
py2/3 must_match mode='r' changes
Diffstat (limited to 'test/MSVC')
-rw-r--r--test/MSVC/batch.py20
1 files changed, 10 insertions, 10 deletions
diff --git a/test/MSVC/batch.py b/test/MSVC/batch.py
index 97d7f3a0..8b7945b4 100644
--- a/test/MSVC/batch.py
+++ b/test/MSVC/batch.py
@@ -94,10 +94,10 @@ test.write('f2.c', "f2.c\n")
test.run(arguments = 'MSVC_BATCH=1 .')
-test.must_match('prog.exe', "prog.c\nf1.c\nf2.c\n")
+test.must_match('prog.exe', "prog.c\nf1.c\nf2.c\n", mode='r')
test.must_match('fake_cl.log', """\
/Fo. prog.c f1.c f2.c
-""")
+""", mode='r')
test.up_to_date(options = 'MSVC_BATCH=1', arguments = '.')
@@ -107,11 +107,11 @@ test.write('f1.c', "f1.c 2\n")
test.run(arguments = 'MSVC_BATCH=1 .')
-test.must_match('prog.exe', "prog.c\nf1.c 2\nf2.c\n")
+test.must_match('prog.exe', "prog.c\nf1.c 2\nf2.c\n", mode='r')
test.must_match('fake_cl.log', """\
/Fo. prog.c f1.c f2.c
/Fo. f1.c
-""")
+""", mode='r')
test.up_to_date(options = 'MSVC_BATCH=1', arguments = '.')
@@ -125,12 +125,12 @@ test.unlink('fake_cl.log')
test.run(arguments = '. MSVC_BATCH=0')
-test.must_match('prog.exe', "prog.c\nf1.c 2\nf2.c\n")
+test.must_match('prog.exe', "prog.c\nf1.c 2\nf2.c\n", mode='r')
test.must_match('fake_cl.log', """\
/Fof1.obj f1.c
/Fof2.obj f2.c
/Foprog.obj prog.c
-""")
+""", mode='r')
test.run(arguments = '-c .')
test.unlink('fake_cl.log')
@@ -138,12 +138,12 @@ test.unlink('fake_cl.log')
test.run(arguments = '. MSVC_BATCH=False')
-test.must_match('prog.exe', "prog.c\nf1.c 2\nf2.c\n")
+test.must_match('prog.exe', "prog.c\nf1.c 2\nf2.c\n", mode='r')
test.must_match('fake_cl.log', """\
/Fof1.obj f1.c
/Fof2.obj f2.c
/Foprog.obj prog.c
-""")
+""", mode='r')
@@ -151,13 +151,13 @@ test.write('f1.c', "f1.c 3\n")
test.run(arguments = '. MSVC_BATCH=0')
-test.must_match('prog.exe', "prog.c\nf1.c 3\nf2.c\n")
+test.must_match('prog.exe', "prog.c\nf1.c 3\nf2.c\n", mode='r')
test.must_match('fake_cl.log', """\
/Fof1.obj f1.c
/Fof2.obj f2.c
/Foprog.obj prog.c
/Fof1.obj f1.c
-""")
+""", mode='r')