Skip to content

Commit fba3b84

Browse files
committed
Include --show-progress in soltest
1 parent 38e79ad commit fba3b84

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

appveyor.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ test_script:
6262
- ps: Start-Sleep -s 100
6363
- cd %APPVEYOR_BUILD_FOLDER%\build\test\%CONFIGURATION%
6464
- copy "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\redist\x86\Microsoft.VC140.CRT\msvc*.dll" .
65-
- soltest.exe -- --ipcpath \\.\pipe\geth.ipc
65+
- soltest.exe --show-progress -- --ipcpath \\.\pipe\geth.ipc
6666

6767
artifacts:
6868
- path: solidity-windows.zip

scripts/tests.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,9 @@ echo "--> IPC available."
6262
# And then run the Solidity unit-tests (once without optimization, once with),
6363
# pointing to that IPC endpoint.
6464
echo "--> Running tests without optimizer..."
65-
"$REPO_ROOT"/build/test/soltest -- --ipcpath /tmp/test/geth.ipc && \
65+
"$REPO_ROOT"/build/test/soltest --show-progress -- --ipcpath /tmp/test/geth.ipc && \
6666
echo "--> Running tests WITH optimizer..." && \
67-
"$REPO_ROOT"/build/test/soltest -- --optimize --ipcpath /tmp/test/geth.ipc
67+
"$REPO_ROOT"/build/test/soltest --show-progress -- --optimize --ipcpath /tmp/test/geth.ipc
6868
ERROR_CODE=$?
6969
pkill eth || true
7070
sleep 4

0 commit comments

Comments
 (0)