aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorAlex Beregszaszi <alex@rtfs.hu>2017-02-09 05:19:05 +0800
committerAlex Beregszaszi <alex@rtfs.hu>2017-02-09 05:50:53 +0800
commitfba3b849293c7c88f0d11316b97edeb55c44f173 (patch)
treea5e80929e958de51de53bf77d799da1c402779eb /scripts
parent38e79adfe44b7dc11778942174384eff509db56f (diff)
downloaddexon-solidity-fba3b849293c7c88f0d11316b97edeb55c44f173.tar
dexon-solidity-fba3b849293c7c88f0d11316b97edeb55c44f173.tar.gz
dexon-solidity-fba3b849293c7c88f0d11316b97edeb55c44f173.tar.bz2
dexon-solidity-fba3b849293c7c88f0d11316b97edeb55c44f173.tar.lz
dexon-solidity-fba3b849293c7c88f0d11316b97edeb55c44f173.tar.xz
dexon-solidity-fba3b849293c7c88f0d11316b97edeb55c44f173.tar.zst
dexon-solidity-fba3b849293c7c88f0d11316b97edeb55c44f173.zip
Include --show-progress in soltest
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/tests.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/tests.sh b/scripts/tests.sh
index ba932da5..8edfda0b 100755
--- a/scripts/tests.sh
+++ b/scripts/tests.sh
@@ -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