2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-15 13:02:11 +00:00

Borland tweaks.

* test/dependency_test.py
  Ignore *.tds files.


[SVN r18219]
This commit is contained in:
Vladimir Prus
2003-04-09 12:17:11 +00:00
parent 303e1f6e62
commit 85a59b8ae6
2 changed files with 6 additions and 0 deletions

View File

@@ -26,6 +26,7 @@ t.expect_touch("bin/$toolset/debug/b.obj")
# It sound weird, but is intentional. Need
# to rename <dependency> eventually.
#t.expect_touch("bin/$toolset/debug/main-target-c/c.exe")
t.ignore("*.tds")
t.expect_nothing_more()
# Only 'a' include <a.h> 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 "",

View File

@@ -26,6 +26,7 @@ t.expect_touch("bin/$toolset/debug/b.obj")
# It sound weird, but is intentional. Need
# to rename <dependency> eventually.
#t.expect_touch("bin/$toolset/debug/main-target-c/c.exe")
t.ignore("*.tds")
t.expect_nothing_more()
# Only 'a' include <a.h> 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 "",