Last change
on this file since 12 was
12,
checked in by landauf, 17 years ago
|
added boost
|
-
Property svn:executable set to
*
|
File size:
748 bytes
|
Line | |
---|
1 | #!/usr/bin/python |
---|
2 | |
---|
3 | # Copyright (C) Vladimir Prus 2004. Permission to copy, use, modify, sell and |
---|
4 | # distribute this software is granted provided this copyright notice appears in |
---|
5 | # all copies. This software is provided "as is" without express or implied |
---|
6 | # warranty, and with no claim as to its suitability for any purpose. |
---|
7 | |
---|
8 | from BoostBuild import Tester, List |
---|
9 | |
---|
10 | # Create a temporary working directory |
---|
11 | t = Tester() |
---|
12 | |
---|
13 | t.set_tree("boostbook") |
---|
14 | # For some reason, the messages are sent to stderr. |
---|
15 | t.run_build_system(stderr="""Writing A.html for refentry(A) |
---|
16 | Writing library/reference.html for section(library.reference) |
---|
17 | Writing index.html for chapter(library) |
---|
18 | Writing HTML.manifest |
---|
19 | """) |
---|
20 | t.expect_addition(["html/A.html", "html/index.html"]) |
---|
21 | |
---|
22 | t.cleanup() |
---|
Note: See
TracBrowser
for help on using the repository browser.