diff options
-rw-r--r-- | appveyor.yml | 2 | ||||
-rwxr-xr-x | scripts/tests.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/appveyor.yml b/appveyor.yml index 428a7a68..a5a8d67c 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -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: diff --git a/scripts/tests.sh b/scripts/tests.sh index 5c482d3d..f3bcf65f 100755 --- a/scripts/tests.sh +++ b/scripts/tests.sh @@ -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 |