diff options
author | Chimrod <> | 2023-11-05 11:23:08 +0100 |
---|---|---|
committer | Chimrod <> | 2023-11-05 11:23:08 +0100 |
commit | 1128450d0b52c09e78d64df5737b8a034b3e230c (patch) | |
tree | 9961b47c91e0530dcd6829833da1cc05b42b8ac2 /readme.md | |
parent | 6ada3862d96f82e44b3b19dd84d08cbb8c6a6006 (diff) |
Fixup in the --help message
Diffstat (limited to 'readme.md')
-rw-r--r-- | readme.md | 18 |
1 files changed, 10 insertions, 8 deletions
@@ -9,13 +9,15 @@ a grammar to represent each instruction. ## Command line - qsp_parser.exe input_file - --version Display the version of the application and exit - --level Message level [debug, warn, error] - --global Each line is refered from the begining of the file and not the - location - -help Display this list of options - --help Display this list of options + qsp_parser.exe input_file + --version Display the version of the application and exit + --list-tests Print all the available tests then exit + --level Filter with this message level [debug, warn, error] + --global Each line is refered from the begining of the file and not the location + -<test> Disable this test + +<test> Enable this test + -help Display this list of options + --help Display this list of options Display this list of options You can run the application by giving in argument the file to analyze: the @@ -70,7 +72,7 @@ can easily spot when a string value is used instead of a numeric. By analysing the branchs, the application can spot the block where no `gt` instructions are given, which can lead to dead end in the code. -### Nested string +### Escaped string The application will report text strings containing only one expression with a `debug` message. |