From 3acedf660f40159fe7de298f9d01ce6487798a9b Mon Sep 17 00:00:00 2001 From: Dave Abrahams Date: Fri, 28 Feb 2003 01:33:10 +0000 Subject: [PATCH] Fix extensions [SVN r17681] --- test/dependency_test.py | 10 +++++----- v2/test/dependency_test.py | 10 +++++----- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/test/dependency_test.py b/test/dependency_test.py index 79d756d3a..1a240bf6a 100644 --- a/test/dependency_test.py +++ b/test/dependency_test.py @@ -19,9 +19,9 @@ t.touch("a.h") t.run_build_system() t.expect_touch("bin/$toolset/debug/a.exe") -t.expect_touch("bin/$toolset/debug/a.o") +t.expect_touch("bin/$toolset/debug/a.obj") t.expect_touch("bin/$toolset/debug/b.exe") -t.expect_touch("bin/$toolset/debug/b.o") +t.expect_touch("bin/$toolset/debug/b.obj") t.expect_touch("bin/$toolset/debug/main-target-c/c.exe") t.expect_nothing_more() @@ -30,7 +30,7 @@ t.touch("src1/a.h") t.run_build_system() t.expect_touch("bin/$toolset/debug/a.exe") -t.expect_touch("bin/$toolset/debug/a.o") +t.expect_touch("bin/$toolset/debug/a.obj") t.expect_touch("bin/$toolset/debug/main-target-c/c.exe") t.expect_nothing_more() @@ -38,7 +38,7 @@ t.expect_nothing_more() t.touch("src1/b.h") t.run_build_system() t.expect_touch("bin/$toolset/debug/a.exe") -t.expect_touch("bin/$toolset/debug/a.o") +t.expect_touch("bin/$toolset/debug/a.obj") t.expect_touch("bin/$toolset/debug/main-target-c/c.exe") t.expect_nothing_more() @@ -58,6 +58,6 @@ t.expect_nothing_more() # support, this check will be implemented later. t.touch("x.foo") t.run_build_system() -t.expect_touch("bin/$toolset/debug/a.o") +t.expect_touch("bin/$toolset/debug/a.obj") t.cleanup() diff --git a/v2/test/dependency_test.py b/v2/test/dependency_test.py index 79d756d3a..1a240bf6a 100644 --- a/v2/test/dependency_test.py +++ b/v2/test/dependency_test.py @@ -19,9 +19,9 @@ t.touch("a.h") t.run_build_system() t.expect_touch("bin/$toolset/debug/a.exe") -t.expect_touch("bin/$toolset/debug/a.o") +t.expect_touch("bin/$toolset/debug/a.obj") t.expect_touch("bin/$toolset/debug/b.exe") -t.expect_touch("bin/$toolset/debug/b.o") +t.expect_touch("bin/$toolset/debug/b.obj") t.expect_touch("bin/$toolset/debug/main-target-c/c.exe") t.expect_nothing_more() @@ -30,7 +30,7 @@ t.touch("src1/a.h") t.run_build_system() t.expect_touch("bin/$toolset/debug/a.exe") -t.expect_touch("bin/$toolset/debug/a.o") +t.expect_touch("bin/$toolset/debug/a.obj") t.expect_touch("bin/$toolset/debug/main-target-c/c.exe") t.expect_nothing_more() @@ -38,7 +38,7 @@ t.expect_nothing_more() t.touch("src1/b.h") t.run_build_system() t.expect_touch("bin/$toolset/debug/a.exe") -t.expect_touch("bin/$toolset/debug/a.o") +t.expect_touch("bin/$toolset/debug/a.obj") t.expect_touch("bin/$toolset/debug/main-target-c/c.exe") t.expect_nothing_more() @@ -58,6 +58,6 @@ t.expect_nothing_more() # support, this check will be implemented later. t.touch("x.foo") t.run_build_system() -t.expect_touch("bin/$toolset/debug/a.o") +t.expect_touch("bin/$toolset/debug/a.obj") t.cleanup()