1#!/usr/local/bin/python3.8
2
3# Copyright 2002 Vladimir Prus
4# Distributed under the Boost Software License, Version 1.0.
5# (See accompanying file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt)
6
7import BoostBuild
8
9t = BoostBuild.Tester(pass_toolset=0)
10
11t.write("test.jam", """
12actions unbuilt { }
13unbuilt all ;
14ECHO "Hi" ;
15""")
16
17t.run_build_system("-ftest.jam", stdout="Hi\n")
18t.cleanup()
19