Include --show-progress in soltest

This commit is contained in:
Alex Beregszaszi
2017-02-08 21:50:53 +00:00
parent 38e79adfe4
commit fba3b84929
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -62,9 +62,9 @@ echo "--> IPC available."
# And then run the Solidity unit-tests (once without optimization, once with),
# pointing to that IPC endpoint.
echo "--> Running tests without optimizer..."
"$REPO_ROOT"/build/test/soltest -- --ipcpath /tmp/test/geth.ipc && \
"$REPO_ROOT"/build/test/soltest --show-progress -- --ipcpath /tmp/test/geth.ipc && \
echo "--> Running tests WITH optimizer..." && \
"$REPO_ROOT"/build/test/soltest -- --optimize --ipcpath /tmp/test/geth.ipc
"$REPO_ROOT"/build/test/soltest --show-progress -- --optimize --ipcpath /tmp/test/geth.ipc
ERROR_CODE=$?
pkill eth || true
sleep 4