aboutsummaryrefslogtreecommitdiff
path: root/tests/test/script/common.test
blob: abd1faaa7a0efd5bbaad8e5194b4b25bd15cd401 (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
# file      : tests/test/script/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 using testscript tests).
#

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

using test
EOI

# The "cat & build" setup: first cat ($c) the testscript, then run build
# ($b) which will execute the testscript.
#
c = cat >>>testscript
b = $effect($build.path) --jobs 1 --quiet --buildfile - test \
  <'./: test{testscript}' &?test/***

# Add extra set of quotes since this value will be "cat" (normally as $*)
# into testscript.
#
test = "'$test'"