From 063233ae1f89267f8fb3d11c829c0d03f82ca72f Mon Sep 17 00:00:00 2001 From: Vladimir Prus Date: Mon, 25 Aug 2008 19:09:30 +0000 Subject: [PATCH] Make build_file test work on Linux [SVN r48389] --- v2/test/build_file.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/v2/test/build_file.py b/v2/test/build_file.py index 9f602001f..c046ac544 100644 --- a/v2/test/build_file.py +++ b/v2/test/build_file.py @@ -89,7 +89,7 @@ exe hello3 : hello3.cpp ; t.write("hello3.cpp", "int main() { return 0; }") t.run_build_system("hello1 " + t.adjust_suffix("hello2.obj"), status=1) - t.expect_output_line("don't know how to make*hello2.obj") + t.expect_output_line("don't know how to make*" + t.adjust_suffix("hello2.obj")) t.expect_nothing_more() t.cleanup()