summaryrefslogtreecommitdiff
path: root/tools/build/test/boostbook.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/build/test/boostbook.py')
-rw-r--r--tools/build/test/boostbook.py23
1 files changed, 23 insertions, 0 deletions
diff --git a/tools/build/test/boostbook.py b/tools/build/test/boostbook.py
new file mode 100644
index 000000000..78eab87d0
--- /dev/null
+++ b/tools/build/test/boostbook.py
@@ -0,0 +1,23 @@
+#!/usr/bin/python
+
+# Copyright 2004, 2006 Vladimir Prus
+# Distributed under the Boost Software License, Version 1.0.
+# (See accompanying file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt)
+
+import BoostBuild
+import string
+
+t = BoostBuild.Tester()
+
+t.set_tree("boostbook")
+
+# For some reason, the messages are sent to stderr.
+t.run_build_system()
+t.fail_test(string.find(t.stdout(), """Writing boost/A.html for refentry(boost.A)
+Writing library/reference.html for section(library.reference)
+Writing index.html for chapter(library)
+Writing docs_HTML.manifest
+""") == -1)
+t.expect_addition(["html/boost/A.html", "html/index.html"])
+
+t.cleanup()