• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#!/usr/bin/python
2
3# Copyright (C) Vladimir Prus 2006.
4# Distributed under the Boost Software License, Version 1.0. (See
5# accompanying file LICENSE_1_0.txt or copy at
6# http://www.boost.org/LICENSE_1_0.txt)
7
8# Test the 'make' example.
9
10import BoostBuild
11import sys
12
13t = BoostBuild.Tester(['example.python.interpreter=%s' % sys.executable])
14t.set_tree("../example/make")
15t.run_build_system()
16t.expect_addition(["bin/main.cpp"])
17t.cleanup()
18