diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2018-05-19 09:02:17 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2018-05-19 09:02:17 +0200 |
commit | 43a1c24b089ae92bcf9a80584ebdf4c4011b9664 (patch) | |
tree | 11d6001053fbb10b1c69271ecdb85541c45193ba /tests/hooks/buildfile | |
parent | 3e4823adaaea81329f0e0dd165cfa6e2f56b62bf (diff) |
Support for deriving target type from file name, handle testscript, buildfile
In particular, instead of:
exe{test}: test{testscript}
We should now write:
exe{test}: testscript
Diffstat (limited to 'tests/hooks/buildfile')
-rw-r--r-- | tests/hooks/buildfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/hooks/buildfile b/tests/hooks/buildfile index c951d56..1bb5fa4 100644 --- a/tests/hooks/buildfile +++ b/tests/hooks/buildfile @@ -2,4 +2,4 @@ # copyright : Copyright (c) 2014-2017 Code Synthesis Ltd # license : MIT; see accompanying LICENSE file -./: test{testscript} $b +./: testscript $b |