aboutsummaryrefslogtreecommitdiff
path: root/tests/test/common.testscript
blob: 23d004de72582a58af40439269326ea9a72630d0 (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
25
26
27
28
# file      : tests/test/common.testscript
# 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

# By default read buildfile from stdin.
#
if ($null($test.options))
  test.options = --buildfile -
end

test.options += --no-default-options --serial-stop --quiet

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