summaryrefslogtreecommitdiffstats
path: root/test/bad-drive.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/bad-drive.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/bad-drive.py')
-rw-r--r--test/bad-drive.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/bad-drive.py b/test/bad-drive.py
index d7a820f..612b24b 100644
--- a/test/bad-drive.py
+++ b/test/bad-drive.py
@@ -94,11 +94,11 @@ test.run(arguments = bad_drive + 'no_target_1',
status = 2)
test.run(arguments = bad_drive + 'no_target_2',
- stderr = "scons: *** No Builder for target `ccc.does_not_exist', needed by `%sno_target_2'. Stop.\n" % bad_drive,
+ stderr = "scons: *** Source `ccc.does_not_exist' not found, needed by target `%sno_target_2'. Stop.\n" % bad_drive,
status = 2)
test.run(arguments = 'ddd.out',
- stderr = "scons: *** No Builder for target `%sno_source', needed by `ddd.out'. Stop.\n" % bad_drive,
+ stderr = "scons: *** Source `%sno_source' not found, needed by target `ddd.out'. Stop.\n" % bad_drive,
status = 2)
test.pass_test()