diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2018-01-20 13:46:11 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2018-02-03 14:35:45 +0200 |
commit | 934f2a9a90c5cad3cdc8a66b50c17827a3ddbcee (patch) | |
tree | f35f106e5369e98350327c79080c571195234c0b /doc | |
parent | 280f4a5bf787587227ca193cd59c6bd74091db70 (diff) |
Get rid of action rule override semantics
Instead we now have two more or less separate match states for outer and
inner parts of an action.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/testscript.cli | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/testscript.cli b/doc/testscript.cli index 7b3d472..666d553 100644 --- a/doc/testscript.cli +++ b/doc/testscript.cli @@ -39,10 +39,10 @@ target as a test along with passing options and arguments, providing the result. For example: \ +exe{hello}: file{names.txt}: test.stdin = true +exe{hello}: file{greetings.txt}: test.stdout = true exe{hello}: test.options = --greeting 'Hi' exe{hello}: test.arguments = - # Read names from stdin. -exe{hello}: test.input = names.txt -exe{hello}: test.output = greetings.txt \ This works well for simple, single-run tests. If, however, our testing |