summaryrefslogtreecommitdiff
path: root/tools/build/test/exit_status.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/build/test/exit_status.py')
-rwxr-xr-xtools/build/test/exit_status.py26
1 files changed, 26 insertions, 0 deletions
diff --git a/tools/build/test/exit_status.py b/tools/build/test/exit_status.py
new file mode 100755
index 0000000000..11c4abf76f
--- /dev/null
+++ b/tools/build/test/exit_status.py
@@ -0,0 +1,26 @@
+#!/usr/bin/python
+
+# Copyright (C) Vladimir Prus 2010.
+# Distributed under the Boost Software License, Version 1.0. (See
+# accompanying file LICENSE_1_0.txt or copy at
+# http://www.boost.org/LICENSE_1_0.txt)
+
+# Test that build failure results in non-zero exit status
+
+import BoostBuild
+
+# Create a temporary working directory.
+t = BoostBuild.Tester()
+
+# Create the needed files.
+t.write("jamroot.jam", """
+exe hello : hello.cpp ;
+""")
+
+t.write("hello.cpp", """
+int main() {
+""")
+
+t.run_build_system(status=1)
+
+t.cleanup()