diff options
Diffstat (limited to 'test/option/debug-stacktrace.py')
-rw-r--r-- | test/option/debug-stacktrace.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/option/debug-stacktrace.py b/test/option/debug-stacktrace.py index cf7b81d..93cb206 100644 --- a/test/option/debug-stacktrace.py +++ b/test/option/debug-stacktrace.py @@ -65,14 +65,14 @@ env.Command('foo', 'foo.k', Copy('$TARGET', '$SOURCE')) test.write('foo.k', "foo.k\n") -test.run(status = 2, stderr = "scons: *** kfile_scan error\n") +test.run(status = 2, stderr = "scons: *** [foo] Exception : kfile_scan error\n") test.run(arguments = "--debug=stacktrace", status = 2, stderr = None) lines = [ - "scons: *** kfile_scan error", + "scons: *** [foo] Exception : kfile_scan error", "scons: internal stack trace:", 'raise Exception, "kfile_scan error"', ] |