1#!/usr/local/bin/python3.8
2
3# (c) Copyright Juergen Hunold 2008
4# Use, modification, and distribution are subject to the
5# Boost Software License, Version 1.0. (See accompanying file
6# LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
7
8import BoostBuild
9import os
10
11# Run test in real directory in order to find Boost.Test via Boost Top-Level
12# Jamroot.
13qt4_dir = os.getcwd() + "/qt4"
14
15t = BoostBuild.Tester(workdir=qt4_dir)
16
17t.run_build_system()
18
19t.cleanup()
20