summaryrefslogtreecommitdiff
path: root/test/nonexistent.py
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2004-02-24 16:03:09 +0000
committerSteven Knight <knight@baldmt.com>2004-02-24 16:03:09 +0000
commitb0656def14f9b2f7feff88301420c1dee99ac670 (patch)
tree3a70896872d92249d3b92d86949912e1b951d816 /test/nonexistent.py
parent4b3d35e6964da9108f1d55a8d0dbb2161300bd3f (diff)
downloadscons-b0656def14f9b2f7feff88301420c1dee99ac670.tar.gz
Better error message when a source file is missing.
Diffstat (limited to 'test/nonexistent.py')
-rw-r--r--test/nonexistent.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/nonexistent.py b/test/nonexistent.py
index 05dd9d09..3e47cbe6 100644
--- a/test/nonexistent.py
+++ b/test/nonexistent.py
@@ -54,12 +54,12 @@ test.run(arguments = '-k foo/bar foo',
status = 2)
test.run(arguments = "aaa.out",
- stderr = "scons: *** No Builder for target `aaa.in', needed by `aaa.out'. Stop.\n",
+ stderr = "scons: *** Source `aaa.in' not found, needed by target `aaa.out'. Stop.\n",
status = 2)
test.run(arguments = "-k bbb.out aaa.out",
- stderr = """scons: *** No Builder for target `bbb.in', needed by `bbb.out'.
-scons: *** No Builder for target `aaa.in', needed by `aaa.out'.
+ stderr = """scons: *** Source `bbb.in' not found, needed by target `bbb.out'.
+scons: *** Source `aaa.in' not found, needed by target `aaa.out'.
""",
status = 2)