diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2016-11-23 16:29:49 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2016-11-23 16:29:49 +0200 |
commit | 793f078ec31dc61921b382f14412ed3e25cc51d8 (patch) | |
tree | 62fb0b58dde440387ca585b151a10dc5af192a25 /tests/buildfile | |
parent | 79cb3221c2babe6f560f2e3e463e899631a32b33 (diff) |
Implement assert directive
The grammar is as follows:
assert <expression> [<description>]
assert! <expression> [<description>]
The expression must evaluate to 'true' or 'false', just like in if-else.
Diffstat (limited to 'tests/buildfile')
-rw-r--r-- | tests/buildfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/buildfile b/tests/buildfile index cd5177e..f38b3ca 100644 --- a/tests/buildfile +++ b/tests/buildfile @@ -2,6 +2,6 @@ # copyright : Copyright (c) 2014-2016 Code Synthesis Ltd # license : MIT; see accompanying LICENSE file -d = function/ test/ +d = directive/ function/ test/ ./: $d include $d |