summaryrefslogtreecommitdiff
path: root/test/subdir.py
diff options
context:
space:
mode:
authorWilliam Deegan <bill@baddogconsulting.com>2017-03-20 15:18:31 -0700
committerWilliam Deegan <bill@baddogconsulting.com>2017-03-20 15:18:31 -0700
commitd3da4fd3d250662234001baecff23ba69b9e91ad (patch)
tree3778e897f778ac5d483cdef52e627c934a4f8f84 /test/subdir.py
parent8ba4d168b797f2b19f15771807e6f578fdaf4e40 (diff)
downloadscons-d3da4fd3d250662234001baecff23ba69b9e91ad.tar.gz
added mode='r' for must_matches, and for one case added mode='w' for source file failing to compile with compiler complaining about mac formatted file
Diffstat (limited to 'test/subdir.py')
-rw-r--r--test/subdir.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/subdir.py b/test/subdir.py
index 67e84505..9a8b762b 100644
--- a/test/subdir.py
+++ b/test/subdir.py
@@ -57,10 +57,10 @@ test.write(['subdir', 'f4.in'], "f4.in\n")
test.run(arguments = 'subdir')
-test.must_match(['subdir', 'f1.out'], "f1.in\n")
-test.must_match(['subdir', 'f2.out'], "f2.in\n")
-test.must_match(['subdir', 'f3.out'], "f3.in\n")
-test.must_match(['subdir', 'f4.out'], "f4.in\n")
+test.must_match(['subdir', 'f1.out'], "f1.in\n", mode='r')
+test.must_match(['subdir', 'f2.out'], "f2.in\n", mode='r')
+test.must_match(['subdir', 'f3.out'], "f3.in\n", mode='r')
+test.must_match(['subdir', 'f4.out'], "f4.in\n", mode='r')
test.up_to_date(arguments = 'subdir')