summaryrefslogtreecommitdiffstats
path: root/test/build-errors.py
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2006-02-25 18:18:55 (GMT)
committerSteven Knight <knight@baldmt.com>2006-02-25 18:18:55 (GMT)
commitfdb7d78c0c62751dfaad55c686aab2aca208043b (patch)
tree4c3768750f3780254d151018eeeba54faaedf1d9 /test/build-errors.py
parent25645b34d598ac82a521db3c9a121474233afef0 (diff)
downloadSCons-fdb7d78c0c62751dfaad55c686aab2aca208043b.zip
SCons-fdb7d78c0c62751dfaad55c686aab2aca208043b.tar.gz
SCons-fdb7d78c0c62751dfaad55c686aab2aca208043b.tar.bz2
In the error message, supply the file name that triggered on IOError or OSError, not just the target name.
Diffstat (limited to 'test/build-errors.py')
-rw-r--r--test/build-errors.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/build-errors.py b/test/build-errors.py
index 9b6443d..e25fbd5 100644
--- a/test/build-errors.py
+++ b/test/build-errors.py
@@ -215,8 +215,8 @@ test.writable('test2.out', 1)
test.description_set("Incorrect STDERR:\n%s" % test.stderr())
errs = [
- "scons: *** [test2.out] Permission denied\n",
- "scons: *** [test2.out] permission denied\n",
+ "scons: *** [test2.out] test2.out: Permission denied\n",
+ "scons: *** [test2.out] test2.out: permission denied\n",
]
test.fail_test(test.stderr() not in errs)