blob: 0c552ae9c2a9acf11b6e3df91452fafcaf1da6dc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# file : tests/build/root.build
# copyright : Copyright (c) 2014-2018 Code Synthesis Ltd
# license : MIT; see accompanying LICENSE file
# We need to configure C++ module to pass the compiler path to some of bpkg
# test commands.
#
using cxx
# Setup the bpkg that we are testing.
#
import bpkg = bpkg%exe{bpkg}
testscript{*}: test = $bpkg
# Specify the test target for cross-testing.
#
test.target = $cxx.target
|