From: stevenknight Date: Thu, 16 Apr 2009 16:51:22 +0000 (+0000) Subject: Fix the expected "Dot not know how to make" error message. X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=1298b3020deccfa76918ab56e51374fa2b7ba7b8;p=scons.git Fix the expected "Dot not know how to make" error message. git-svn-id: http://scons.tigris.org/svn/scons/trunk@4096 fdb21ef1-2011-0410-befe-b5e4ea1792b1 --- diff --git a/test/Win32/bad-drive.py b/test/Win32/bad-drive.py index 200ae02b..ffa5aad9 100644 --- a/test/Win32/bad-drive.py +++ b/test/Win32/bad-drive.py @@ -92,7 +92,7 @@ test.fail_test(test.read('aaa.out') != "aaa.in\n") # becomes an issue or some refactoring restores the old behavior. test.run(arguments = bad_drive + 'not_mentioned', - stderr = "scons: *** Do not know how to make File target `%snot_mentioned'. Stop.\n" % (bad_drive), + stderr = "scons: *** Do not know how to make File target `%snot_mentioned' (%snot_mentioned). Stop.\n" % (bad_drive, bad_drive), status = 2) expect = "scons: *** [%sno_target_1] No drive `%s' for target `%sno_target_1'.\n" % (bad_drive, bad_drive, bad_drive)