From 08eea971d2d3170ca357935644483dc520f46173 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Thu, 1 Dec 2016 13:19:49 +0200 Subject: Organize tests/, factor common testscript fragments --- tests/test/script/common.test | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 tests/test/script/common.test (limited to 'tests/test/script/common.test') diff --git a/tests/test/script/common.test b/tests/test/script/common.test new file mode 100644 index 0000000..a38c0a1 --- /dev/null +++ b/tests/test/script/common.test @@ -0,0 +1,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 <>>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) -q --buildfile - <'./: test{testscript}' \ + &?test/*** test + +# Add extra set of quotes since this value will be "cat" (normally as $*) +# into testscript. +# +test = "'$test'" -- cgit v1.1