Last change
on this file since 12 was
12,
checked in by landauf, 18 years ago
|
added boost
|
-
Property svn:executable set to
*
|
File size:
471 bytes
|
Line | |
---|
1 | #!/usr/bin/python |
---|
2 | |
---|
3 | from BoostBuild import Tester, List |
---|
4 | from time import sleep |
---|
5 | |
---|
6 | t = Tester() |
---|
7 | |
---|
8 | t.set_tree("test2") |
---|
9 | t.run_build_system("-sBOOST_BUILD_PATH=" + t.original_workdir + "/..") |
---|
10 | |
---|
11 | file_list = 'bin/foo/$toolset/debug/runtime-link-dynamic/' * List("foo foo.o") |
---|
12 | t.expect_addition(file_list) |
---|
13 | |
---|
14 | |
---|
15 | t.write("foo.cpp", "int main(int, char**) { return 0; }\n") |
---|
16 | t.run_build_system("-d2 -sBOOST_BUILD_PATH=" + t.original_workdir + "/..") |
---|
17 | t.expect_touch(file_list) |
---|
18 | t.pass_test() |
---|
19 | |
---|
Note: See
TracBrowser
for help on using the repository browser.