diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2018-09-04 14:58:18 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2018-09-04 14:58:18 +0300 |
commit | c11b9b69bcf161658275876d2fd991cc5c103d64 (patch) | |
tree | 3515e49421d03eaaaa6d485e8f306a4de9f30685 /tests/ci/buildfile | |
parent | f4cb9aad1d26b4808d3ac1d791f82c3815d142ea (diff) |
Rename .test/test{} to .testscript/testscript{}
Diffstat (limited to 'tests/ci/buildfile')
-rw-r--r-- | tests/ci/buildfile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/ci/buildfile b/tests/ci/buildfile index 1e085e0..95a1d6b 100644 --- a/tests/ci/buildfile +++ b/tests/ci/buildfile @@ -3,7 +3,7 @@ # license : MIT; see accompanying LICENSE file define common: file -common{*}: extension = test +common{*}: extension = testscript dir = ../../brep/handler/ci/ @@ -11,8 +11,8 @@ include $dir commons = data -./: test{* -{$commons}} common{$commons} \ +./: testscript{* -{$commons}} common{$commons} \ $dir/exe{brep-ci-dir} $dir/exe{brep-ci-load} -test{ci-dir}@./: test = $out_base/$dir/brep-ci-dir -test{ci-load}@./: test = $out_base/$dir/brep-ci-load +testscript{ci-dir}@./: test = $out_base/$dir/brep-ci-dir +testscript{ci-load}@./: test = $out_base/$dir/brep-ci-load |