diff options
author | Steven Knight <knight@baldmt.com> | 2001-10-25 13:11:10 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2001-10-25 13:11:10 (GMT) |
commit | 123be6df3fe113bad181c0c93aab4ee58b26e91f (patch) | |
tree | ac0b0ab9c7630768dc6411a2e8887ae3efc6dd3f /test/ENV.py | |
parent | 6a98a941a75eab2e4c22fa3e19cb973046f613b6 (diff) | |
download | SCons-123be6df3fe113bad181c0c93aab4ee58b26e91f.zip SCons-123be6df3fe113bad181c0c93aab4ee58b26e91f.tar.gz SCons-123be6df3fe113bad181c0c93aab4ee58b26e91f.tar.bz2 |
Support building (sub)directories.
Diffstat (limited to 'test/ENV.py')
-rw-r--r-- | test/ENV.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/ENV.py b/test/ENV.py index 221e7f9..1ff699d 100644 --- a/test/ENV.py +++ b/test/ENV.py @@ -71,8 +71,7 @@ os.chmod(bin2_build_py, 0755) test.write('input', "input file\n") -#test.run(arguments = '.') -test.run(arguments = 'bin1.out bin2.out') +test.run(arguments = '.') test.fail_test(test.read('bin1.out') != "bin1/build.py\ninput file\n") test.fail_test(test.read('bin2.out') != "bin2/build.py\ninput file\n") |