Move custom test options to after --

This commit is contained in:
chriseth 2016-08-12 15:12:54 +02:00
parent 61e94940bc
commit d479939949
2 changed files with 2 additions and 2 deletions

View File

@ -51,7 +51,7 @@ build_script:
# - cd %APPVEYOR_BUILD_FOLDER%\build\test\%CONFIGURATION%
# - copy "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\redist\x86\Microsoft.VC140.CRT\msvc*.dll" .
# - start eth.exe --test -d %TMP%\eth_for_soltest
# - soltest.exe --ipc %TMP%\eth_for_soltest\geth.ipc
# - soltest.exe -- --ipc %TMP%\eth_for_soltest\geth.ipc
# - pkill eth
artifacts:

View File

@ -53,7 +53,7 @@ $ETH_PATH --test -d /tmp/test &
while [ ! -S /tmp/test/geth.ipc ]; do sleep 2; done
# And then run the Solidity unit-tests, pointing to that IPC endpoint.
"$REPO_ROOT"/build/test/soltest --ipc /tmp/test/geth.ipc
"$REPO_ROOT"/build/test/soltest -- --ipc /tmp/test/geth.ipc
ERROR_CODE=$?
pkill eth || true
sleep 4