aboutsummaryrefslogtreecommitdiff
path: root/tests/test/common.test
blob: ad0ae3641b0342fa2249f8076c77e1036893eda9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# file      : tests/test/common.test
# copyright : Copyright (c) 2014-2016 Code Synthesis Ltd
# license   : MIT; see accompanying LICENSE file

# Commonly-used build system test project setup and driver command line
# (test module tests).
#

+mkdir build
+cat <<EOI >>>build/bootstrap.build
project = test
amalgamation =

using test
EOI

test = $effect($build.path)
test.options += --jobs 1 --quiet --buildfile -

# By default perform test.
#
if ($empty($test.arguments))
  test.arguments = test
end