diff options
author | Steven Knight <knight@baldmt.com> | 2001-10-28 11:52:08 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2001-10-28 11:52:08 (GMT) |
commit | e5410ac77d8740375b43cb154bedf7219279bf67 (patch) | |
tree | 75228cd5740c78a3a2e096e5f44b07e85d2e5d54 /test/Depends.py | |
parent | a140305276c1dc47997c54a76e5b586b1f82b4fb (diff) | |
download | SCons-e5410ac77d8740375b43cb154bedf7219279bf67.zip SCons-e5410ac77d8740375b43cb154bedf7219279bf67.tar.gz SCons-e5410ac77d8740375b43cb154bedf7219279bf67.tar.bz2 |
Fix a number of small problems in tests.
Diffstat (limited to 'test/Depends.py')
-rw-r--r-- | test/Depends.py | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/test/Depends.py b/test/Depends.py index 03033b1..3777fbd 100644 --- a/test/Depends.py +++ b/test/Depends.py @@ -73,7 +73,8 @@ test.write(['subdir', 'foo.dep'], "subdir/foo.dep 1\n") test.write(['subdir', 'bar.dep'], "subdir/bar.dep 1\n") #XXXtest.run(arguments = '.') -test.run(arguments = 'f1.out f2.out f3.out subdir/f4.out') +#test.run(arguments = 'f1.out f2.out f3.out subdir/f4.out') +test.run(arguments = 'f1.out f2.out f3.out') test.fail_test(test.read('f1.out') != "f1.in\nsubdir/foo.dep 1\n") test.fail_test(test.read('f2.out') != "f2.in\nsubdir/foo.dep 1\n") @@ -86,7 +87,8 @@ test.write(['subdir', 'foo.dep'], "subdir/foo.dep 2\n") test.write(['subdir', 'bar.dep'], "subdir/bar.dep 2\n") #XXXtest.run(arguments = '.') -test.run(arguments = 'f1.out f2.out f3.out subdir/f4.out') +#test.run(arguments = 'f1.out f2.out f3.out subdir/f4.out') +test.run(arguments = 'f1.out f2.out f3.out') test.fail_test(test.read('f1.out') != "f1.in\nsubdir/foo.dep 2\n") test.fail_test(test.read('f2.out') != "f2.in\nsubdir/foo.dep 2\n") @@ -97,7 +99,8 @@ test.fail_test(test.read('f3.out') != "f3.in\nsubdir/bar.dep 2\n") test.write(['subdir', 'bar.dep'], "subdir/bar.dep 3\n") #XXXtest.run(arguments = '.') -test.run(arguments = 'f1.out f2.out f3.out subdir/f4.out') +#test.run(arguments = 'f1.out f2.out f3.out subdir/f4.out') +test.run(arguments = 'f1.out f2.out f3.out') test.fail_test(test.read('f1.out') != "f1.in\nsubdir/foo.dep 2\n") test.fail_test(test.read('f2.out') != "f2.in\nsubdir/foo.dep 2\n") |