summaryrefslogtreecommitdiffstats
path: root/test/nonexistent.py
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2004-02-24 16:03:09 (GMT)
committerSteven Knight <knight@baldmt.com>2004-02-24 16:03:09 (GMT)
commite4730ef6dd88c7c3d73657b75c35d3a8dc55b76b (patch)
tree3a70896872d92249d3b92d86949912e1b951d816 /test/nonexistent.py
parent7e47444082fbd90c50717050873e7c2b3b00a6ea (diff)
downloadSCons-e4730ef6dd88c7c3d73657b75c35d3a8dc55b76b.zip
SCons-e4730ef6dd88c7c3d73657b75c35d3a8dc55b76b.tar.gz
SCons-e4730ef6dd88c7c3d73657b75c35d3a8dc55b76b.tar.bz2
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 05dd9d0..3e47cbe 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)