90c3f1170f
and if program does exit(1) we get '1'. The code for checking was using os.WIFSIGNALLED, and that returns true for '1' -- it seems like it is expecting result of os.system, which would be 256, or something. [SVN r62634]
27 lines
522 B
Python
Executable File
27 lines
522 B
Python
Executable File
#!/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()
|