aboutsummaryrefslogtreecommitdiff
path: root/tests/directive
AgeCommit message (Collapse)AuthorFilesLines
2017-01-05Update copyright yearBoris Kolpackov2-2/+2
2016-12-16Convert tests/ to subproject, initial work on cross-testing supportBoris Kolpackov1-1/+1
2016-12-05Use new convert() in if-else, assert parsingBoris Kolpackov1-1/+1
2016-12-01Organize tests/, factor common testscript fragmentsBoris Kolpackov3-15/+2
2016-11-23Implement assert directiveBoris Kolpackov3-0/+46
The grammar is as follows: assert <expression> [<description>] assert! <expression> [<description>] The expression must evaluate to 'true' or 'false', just like in if-else.
2015-12-03Implement new potential directive keyword testBoris Kolpackov3-12/+0
Now we can use directive names as variables and targets type, for example: print = foo # variable print{foo}: # target
2015-09-09Add support for quoting directive namesBoris Kolpackov3-0/+12
Now only unquoted, literal names are recognized as directives, for example: 'print' = abc print $print