diff options
Diffstat (limited to 'tests/common.test')
-rw-r--r-- | tests/common.test | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/tests/common.test b/tests/common.test new file mode 100644 index 0000000..4d4520f --- /dev/null +++ b/tests/common.test @@ -0,0 +1,21 @@ +# file : tests/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. +# + ++mkdir build ++cat <<EOI >>>build/bootstrap.build +project = test +amalgamation = +EOI + +test = $effect($build.path) +test.options += -q --buildfile - + +# By default just load the buildfile. +# ++if ($empty($test.arguments)) + test.arguments = noop +end |