diff options
author | Steven Knight <knight@baldmt.com> | 2004-08-30 05:04:22 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2004-08-30 05:04:22 (GMT) |
commit | 27c4bbb32cf83e5abe4fcfe9ad2f407ee8a2f475 (patch) | |
tree | b0de3a643b1bdc84d145595bd3bad218e9388dac /test/Delete.py | |
parent | 39c82b149712471733d113a8d315fb3e53775359 (diff) | |
download | SCons-27c4bbb32cf83e5abe4fcfe9ad2f407ee8a2f475.zip SCons-27c4bbb32cf83e5abe4fcfe9ad2f407ee8a2f475.tar.gz SCons-27c4bbb32cf83e5abe4fcfe9ad2f407ee8a2f475.tar.bz2 |
Test fixes: Win32 portability in Delete.py; fix a problem in msvs.py introduced by quoting Python executables; clean up temporary files/directories properly in SConfTests.py and UtilTests.py.
Diffstat (limited to 'test/Delete.py')
-rw-r--r-- | test/Delete.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/Delete.py b/test/Delete.py index c57a810..138dc95 100644 --- a/test/Delete.py +++ b/test/Delete.py @@ -161,6 +161,8 @@ test.write('f14.in', "f14.in\n") test.run(status=2, stderr=None) -test.fail_test(string.find(test.stderr(), "No such file or directory") == -1) +stderr = test.stderr() +test.fail_test(string.find(stderr, "No such file or directory") == -1 and + string.find(stderr, "The system cannot find the path specified") == -1) test.pass_test() |