diff --git a/test/dependency_test.py b/test/dependency_test.py index 0068d3423..6cad2a885 100644 --- a/test/dependency_test.py +++ b/test/dependency_test.py @@ -26,6 +26,7 @@ t.expect_touch("bin/$toolset/debug/b.obj") # It sound weird, but is intentional. Need # to rename eventually. #t.expect_touch("bin/$toolset/debug/main-target-c/c.exe") +t.ignore("*.tds") t.expect_nothing_more() # Only 'a' include and should be updated @@ -34,6 +35,7 @@ t.run_build_system() t.expect_touch("bin/$toolset/debug/a.exe") t.expect_touch("bin/$toolset/debug/a.obj") +t.ignore("*.tds") t.expect_nothing_more() # "src/a.h" includes "b.h" (in the same dir) @@ -41,6 +43,7 @@ t.touch("src1/b.h") t.run_build_system() t.expect_touch("bin/$toolset/debug/a.exe") t.expect_touch("bin/$toolset/debug/a.obj") +t.ignore("*.tds") t.expect_nothing_more() # included by "src/b.h". We had a bug: file included via "", diff --git a/v2/test/dependency_test.py b/v2/test/dependency_test.py index 0068d3423..6cad2a885 100644 --- a/v2/test/dependency_test.py +++ b/v2/test/dependency_test.py @@ -26,6 +26,7 @@ t.expect_touch("bin/$toolset/debug/b.obj") # It sound weird, but is intentional. Need # to rename eventually. #t.expect_touch("bin/$toolset/debug/main-target-c/c.exe") +t.ignore("*.tds") t.expect_nothing_more() # Only 'a' include and should be updated @@ -34,6 +35,7 @@ t.run_build_system() t.expect_touch("bin/$toolset/debug/a.exe") t.expect_touch("bin/$toolset/debug/a.obj") +t.ignore("*.tds") t.expect_nothing_more() # "src/a.h" includes "b.h" (in the same dir) @@ -41,6 +43,7 @@ t.touch("src1/b.h") t.run_build_system() t.expect_touch("bin/$toolset/debug/a.exe") t.expect_touch("bin/$toolset/debug/a.obj") +t.ignore("*.tds") t.expect_nothing_more() # included by "src/b.h". We had a bug: file included via "",