2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-14 12:42:11 +00:00
Files
build/test/core_d12.py

32 lines
676 B
Python

#!/usr/bin/python
# Copyright 2002, 2003 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)
# This tests correct handling of "-d1" and "-d2" options.
import BoostBuild
t = BoostBuild.Tester(pass_toolset=0)
t.write("file.jam", """
actions a { }
actions quietly b { }
ALWAYS all ;
a all ;
b all ;
""")
t.run_build_system("-ffile.jam -d0", stdout="")
t.run_build_system("-ffile.jam -d1")
t.expect_output_line("a all")
t.expect_output_line("b all", False)
t.run_build_system("-ffile.jam -d2")
t.expect_output_line("a all")
t.expect_output_line("b all")
t.cleanup()