diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2016-10-24 15:38:22 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2016-11-04 09:26:35 +0200 |
commit | 83c28bc98a3cb439c3dbb3824f4ede4eb14798a3 (patch) | |
tree | 1d2ac9c673278c1d854b0843719e05f58b07b503 /tests/test/script | |
parent | 5bfa47e072eb0592a4df15dbf68ce3ea76383905 (diff) |
Rename tests/test/script/ to tests/test/script/runner/
Diffstat (limited to 'tests/test/script')
-rw-r--r-- | tests/test/script/buildfile | 6 | ||||
-rw-r--r-- | tests/test/script/runner/buildfile | 7 | ||||
-rw-r--r-- | tests/test/script/runner/driver.cxx (renamed from tests/test/script/driver.cxx) | 2 | ||||
-rw-r--r-- | tests/test/script/runner/testscript (renamed from tests/test/script/testscript) | 0 |
4 files changed, 11 insertions, 4 deletions
diff --git a/tests/test/script/buildfile b/tests/test/script/buildfile index bf69e27..2bc4780 100644 --- a/tests/test/script/buildfile +++ b/tests/test/script/buildfile @@ -2,6 +2,6 @@ # copyright : Copyright (c) 2014-2016 Code Synthesis Ltd # license : MIT; see accompanying LICENSE file -exe{driver}: cxx{driver} test{testscript} - -include ../../../../build2/ +d = runner/ +./: $d +include $d diff --git a/tests/test/script/runner/buildfile b/tests/test/script/runner/buildfile new file mode 100644 index 0000000..c91f940 --- /dev/null +++ b/tests/test/script/runner/buildfile @@ -0,0 +1,7 @@ +# file : tests/test/script/runner/buildfile +# copyright : Copyright (c) 2014-2016 Code Synthesis Ltd +# license : MIT; see accompanying LICENSE file + +exe{driver}: cxx{driver} test{testscript} + +include ../../../../../build2/ diff --git a/tests/test/script/driver.cxx b/tests/test/script/runner/driver.cxx index b81172e..940a68c 100644 --- a/tests/test/script/driver.cxx +++ b/tests/test/script/runner/driver.cxx @@ -1,4 +1,4 @@ -// file : tests/test/script/driver.cxx -*- C++ -*- +// file : tests/test/script/runner/driver.cxx -*- C++ -*- // copyright : Copyright (c) 2014-2016 Code Synthesis Ltd // license : MIT; see accompanying LICENSE file diff --git a/tests/test/script/testscript b/tests/test/script/runner/testscript index 4d5d3b3..4d5d3b3 100644 --- a/tests/test/script/testscript +++ b/tests/test/script/runner/testscript |