diff options
author | Steven Knight <knight@baldmt.com> | 2003-07-22 12:47:32 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2003-07-22 12:47:32 (GMT) |
commit | f859b25563abd47e7fe7680b9a72a2245fae025c (patch) | |
tree | 2e0f53021a927859609d6c669992aee49ce7c0e8 /test/M4.py | |
parent | 17f8210401fbaf283fba34e5d87700e4e7431470 (diff) | |
download | SCons-f859b25563abd47e7fe7680b9a72a2245fae025c.zip SCons-f859b25563abd47e7fe7680b9a72a2245fae025c.tar.gz SCons-f859b25563abd47e7fe7680b9a72a2245fae025c.tar.bz2 |
M4 test portability. (Chad Austin)
Diffstat (limited to 'test/M4.py')
-rw-r--r-- | test/M4.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -99,8 +99,8 @@ bar.M4(target = 'bar', source = 'bar.m4') test.fail_test(test.read('wrapper.out') != "wrapper.py\n") - test.fail_test(test.read('foo.x') != "line 1\nfff\nline 3\n") + test.fail_test(test.read('foo.x', 'r') != "line 1\nfff\nline 3\n") - test.fail_test(test.read('bar') != "line 1\nbbb\nline 3\n") + test.fail_test(test.read('bar', 'r') != "line 1\nbbb\nline 3\n") test.pass_test() |