summaryrefslogtreecommitdiffstats
path: root/src/boost/tools/build/test/core_syntax_error_exit_status.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/boost/tools/build/test/core_syntax_error_exit_status.py')
-rw-r--r--src/boost/tools/build/test/core_syntax_error_exit_status.py23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/boost/tools/build/test/core_syntax_error_exit_status.py b/src/boost/tools/build/test/core_syntax_error_exit_status.py
new file mode 100644
index 000000000..bffa676b7
--- /dev/null
+++ b/src/boost/tools/build/test/core_syntax_error_exit_status.py
@@ -0,0 +1,23 @@
+#!/usr/bin/python
+
+# Copyright (C) Mateusz Loskot 2020.
+# Distributed under the Boost Software License, Version 1.0. (See
+# accompanying file LICENSE.txt or copy at
+# https://www.bfgroup.xyz/b2/LICENSE.txt)
+
+# Test that Jam syntax error 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.run_build_system(status=1)
+
+t.cleanup()