You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -163,9 +200,12 @@ if [[ "$run_command" == 'help' ]] || [[ "$run_command" == '--help' ]] ; then
163
200
$0 krun : Run given input <pgm> using 'krun'
164
201
$0 check : Run the IELE well-formedness checker on <pgm>
165
202
$0 vm : Run the KIELE VM server.
203
+
$0 coverage : Generates a report file containing contract information and coverage data.
166
204
$0 generate-report : Generate the static HTML report.
167
205
$0 upload : Upload the HTML report to the fireflyblockchain.com website.
168
-
206
+
$0 compile : Compile solidity contracts using isolc. If no path is provided, all the found .sol files will be compiled. For more information run 'kiele compile --help'.
207
+
$0 test : Runs either a python or a solidity test file. If no path is provided, will run all the tests found under the test folder. For more information run 'kiele test --help'.
208
+
$0 blackbox : Attempt to find new test inputs via blackbox random testing. For more information run 'kiele blackbox --help'.
169
209
$0 help : Display this help message.
170
210
$0 version : Display the versions of KIELE in use.
171
211
@@ -175,6 +215,7 @@ if [[ "$run_command" == 'help' ]] || [[ "$run_command" == '--help' ]] ; then
175
215
<K arg> is an argument you want to pass to K
176
216
<KIELE arg> is one of (--no-unparse|--debug|--host|--port|--mode|--coverage
177
217
|--schedule|--module|--definition|--depth)
218
+
<combined.json path> is the path to the build artifacts from 'isolc --combined-json'
178
219
<Report json path> is the path to the report json file
179
220
<Report output path> is the output HTML report file path (default: \$uuid.html)
0 commit comments