summaryrefslogtreecommitdiffstats
path: root/test/Rpcgen/RPCGENSERVICEFLAGS.py
diff options
context:
space:
mode:
authorWilliam Deegan <bill@baddogconsulting.com>2017-03-12 22:35:12 (GMT)
committerWilliam Deegan <bill@baddogconsulting.com>2017-03-12 22:35:12 (GMT)
commitfac6a93b2fef46b7f0e66caf0dc4cc98d27fa2fb (patch)
tree56594a84735ff0a6a94850fdd5f43a5851bf2073 /test/Rpcgen/RPCGENSERVICEFLAGS.py
parent1e010cb43dabeda08a5882f4f93969d217c8eecc (diff)
downloadSCons-fac6a93b2fef46b7f0e66caf0dc4cc98d27fa2fb.zip
SCons-fac6a93b2fef46b7f0e66caf0dc4cc98d27fa2fb.tar.gz
SCons-fac6a93b2fef46b7f0e66caf0dc4cc98d27fa2fb.tar.bz2
py2/3 fix mostly adding mode='r' to must_match
Diffstat (limited to 'test/Rpcgen/RPCGENSERVICEFLAGS.py')
-rw-r--r--test/Rpcgen/RPCGENSERVICEFLAGS.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/Rpcgen/RPCGENSERVICEFLAGS.py b/test/Rpcgen/RPCGENSERVICEFLAGS.py
index a956d4f..7644485 100644
--- a/test/Rpcgen/RPCGENSERVICEFLAGS.py
+++ b/test/Rpcgen/RPCGENSERVICEFLAGS.py
@@ -71,10 +71,10 @@ expect_h = output % ('-h', test.workpath('rpcif.h'))
expect_svc = output_svc % ('-m', test.workpath('rpcif_svc.c'))
expect_xdr = output % ('-c', test.workpath('rpcif_xdr.c'))
-test.must_match('rpcif_clnt.c', expect_clnt)
-test.must_match('rpcif.h', expect_h)
-test.must_match('rpcif_svc.c', expect_svc)
-test.must_match('rpcif_xdr.c', expect_xdr)
+test.must_match('rpcif_clnt.c', expect_clnt, mode='r')
+test.must_match('rpcif.h', expect_h, mode='r')
+test.must_match('rpcif_svc.c', expect_svc, mode='r')
+test.must_match('rpcif_xdr.c', expect_xdr, mode='r')