diff options
| author | Kyle Gunger <corechg@gmail.com> | 2020-07-08 17:05:18 -0400 | 
|---|---|---|
| committer | Kyle Gunger <corechg@gmail.com> | 2020-07-08 17:05:18 -0400 | 
| commit | 99a037c68522a9ff74449a6aa41c546d85d1bc15 (patch) | |
| tree | 6bcd4a51bc432d37a6fc0b4b2a7c09f8317bd88b | |
| parent | 8db6eccbd4678305bf7fcb66effa1a57d929db34 (diff) | |
Update test script
| -rwxr-xr-x | tests/run-tests.sh | 10 | 
1 files changed, 6 insertions, 4 deletions
| diff --git a/tests/run-tests.sh b/tests/run-tests.sh index 4b8d0b1..0bc57b0 100755 --- a/tests/run-tests.sh +++ b/tests/run-tests.sh @@ -2,12 +2,14 @@ PARSECMD=../build/parse  PARSEFILE=" "  parse () { -    $PARSECMD -in $PARSEFILE.tnsl -out $PARSEFILE.tnp +    $PARSECMD -in $PARSEFILE-test.tnsl -out $PARSEFILE-test.tnp  } -PARSEFILE=block-test +PARSEFILE=block  parse -PARSEFILE=comment-test + +PARSEFILE=comment  parse -PARSEFILE=literal-test + +PARSEFILE=literal  parse
\ No newline at end of file |