diff options
author | William Deegan <bill@baddogconsulting.com> | 2017-03-13 15:44:48 (GMT) |
---|---|---|
committer | William Deegan <bill@baddogconsulting.com> | 2017-03-13 15:44:48 (GMT) |
commit | be76fd27e51c16589d9167e279d4bb3820a8e5c1 (patch) | |
tree | 047342f83193101c13413e92c33eceddaa484bc5 /test/CXX/CXX.py | |
parent | cbe2deee53fd4d29f3144ae40715301f29440730 (diff) | |
parent | 3b23df1f6b2135739b988a497d98d85dd8a806fa (diff) | |
download | SCons-be76fd27e51c16589d9167e279d4bb3820a8e5c1.zip SCons-be76fd27e51c16589d9167e279d4bb3820a8e5c1.tar.gz SCons-be76fd27e51c16589d9167e279d4bb3820a8e5c1.tar.bz2 |
fix mistaken head close
Diffstat (limited to 'test/CXX/CXX.py')
-rw-r--r-- | test/CXX/CXX.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/test/CXX/CXX.py b/test/CXX/CXX.py index 1a07b09..83c4285 100644 --- a/test/CXX/CXX.py +++ b/test/CXX/CXX.py @@ -151,15 +151,15 @@ test.write('test5.C++', r"""This is a .C++ file. test.run(arguments = '.', stderr = None) -test.must_match('test1' + _exe, "This is a .cc file.\n") +test.must_match('test1' + _exe, "This is a .cc file.\n", mode='r') -test.must_match('test2' + _exe, "This is a .cpp file.\n") +test.must_match('test2' + _exe, "This is a .cpp file.\n", mode='r') -test.must_match('test3' + _exe, "This is a .cxx file.\n") +test.must_match('test3' + _exe, "This is a .cxx file.\n", mode='r') -test.must_match('test4' + _exe, "This is a .c++ file.\n") +test.must_match('test4' + _exe, "This is a .c++ file.\n", mode='r') -test.must_match('test5' + _exe, "This is a .C++ file.\n") +test.must_match('test5' + _exe, "This is a .C++ file.\n", mode='r') if TestSCons.case_sensitive_suffixes('.c', '.C'): |