Last change
on this file since 32 was
29,
checked in by landauf, 17 years ago
|
updated boost from 1_33_1 to 1_34_1
|
File size:
643 bytes
|
Line | |
---|
1 | #!/usr/bin/python |
---|
2 | |
---|
3 | # Copyright 2004, 2006 Vladimir Prus |
---|
4 | # Distributed under the Boost Software License, Version 1.0. |
---|
5 | # (See accompanying file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt) |
---|
6 | |
---|
7 | from BoostBuild import Tester, List |
---|
8 | |
---|
9 | # Create a temporary working directory |
---|
10 | t = Tester() |
---|
11 | |
---|
12 | t.set_tree("boostbook") |
---|
13 | # For some reason, the messages are sent to stderr. |
---|
14 | t.run_build_system(stderr="""Writing boost/A.html for refentry(boost.A) |
---|
15 | Writing library/reference.html for section(library.reference) |
---|
16 | Writing index.html for chapter(library) |
---|
17 | Writing HTML.manifest |
---|
18 | """) |
---|
19 | t.expect_addition(["html/boost/A.html", "html/index.html"]) |
---|
20 | |
---|
21 | t.cleanup() |
---|
Note: See
TracBrowser
for help on using the repository browser.