diff options
author | Steven Knight <knight@baldmt.com> | 2009-04-16 16:51:22 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2009-04-16 16:51:22 (GMT) |
commit | 143b9b124767e79f223046a20f4bdc114bb2064d (patch) | |
tree | c15383f8a058e9cf6a4870fc79c896f8f4bd7a7c /test/Win32/bad-drive.py | |
parent | 27c3845b715fe6c20b49ae65bbd28e8c46a6ea49 (diff) | |
download | SCons-143b9b124767e79f223046a20f4bdc114bb2064d.zip SCons-143b9b124767e79f223046a20f4bdc114bb2064d.tar.gz SCons-143b9b124767e79f223046a20f4bdc114bb2064d.tar.bz2 |
Fix the expected "Dot not know how to make" error message.
Diffstat (limited to 'test/Win32/bad-drive.py')
-rw-r--r-- | test/Win32/bad-drive.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Win32/bad-drive.py b/test/Win32/bad-drive.py index 200ae02..ffa5aad 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) |