diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2016-12-01 13:19:49 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2016-12-01 13:19:49 +0200 |
commit | 08eea971d2d3170ca357935644483dc520f46173 (patch) | |
tree | 871df5e71e364d4620db74298b7f88f9466d1473 /tests/test/script/runner | |
parent | 0ed86c76239d4f2904ea4ae1a77902a9e0db2a6d (diff) |
Organize tests/, factor common testscript fragments
Diffstat (limited to 'tests/test/script/runner')
-rw-r--r-- | tests/test/script/runner/cleanup.test | 13 | ||||
-rw-r--r-- | tests/test/script/runner/status.test | 15 |
2 files changed, 5 insertions, 23 deletions
diff --git a/tests/test/script/runner/cleanup.test b/tests/test/script/runner/cleanup.test index e5d917d..52c0a29 100644 --- a/tests/test/script/runner/cleanup.test +++ b/tests/test/script/runner/cleanup.test @@ -2,18 +2,9 @@ # copyright : Copyright (c) 2014-2016 Code Synthesis Ltd # license : MIT; see accompanying LICENSE file -+mkdir build -+cat <<EOI >>>build/bootstrap.build -project = test -amalgamation = +.include ../common.test -using test -EOI - -b = $effect($build.path) -q --no-column --buildfile - <"./: test{testscript}" \ - &?test/*** test -c = cat >>>testscript -test = "'$test'" +b += --no-column # Valid cleanups. # diff --git a/tests/test/script/runner/status.test b/tests/test/script/runner/status.test index 4998311..cf4ce1d 100644 --- a/tests/test/script/runner/status.test +++ b/tests/test/script/runner/status.test @@ -1,19 +1,10 @@ -# file : tests/test/script/runner/status.tests +# file : tests/test/script/runner/status.test # copyright : Copyright (c) 2014-2016 Code Synthesis Ltd # license : MIT; see accompanying LICENSE file -+mkdir build -+cat <<EOI >>>build/bootstrap.build -project = test -amalgamation = +.include ../common.test -using test -EOI - -b = $effect($build.path) -q --no-column --buildfile - <"./: test{testscript}" \ - &?test/*** test -c = cat >>>testscript -test = "'$test'" +b += --no-column +if ($cxx.target.class == "windows") ext = ".exe" |