Skip to content

Commit

Permalink
Run tests in constantinople mode too
Browse files Browse the repository at this point in the history
  • Loading branch information
axic committed Apr 10, 2018
1 parent 5f76f47 commit 4450034
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion scripts/tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -99,11 +99,18 @@ then
progress=""
fi

EVM_VERSIONS="homestead byzantium"

if [ "$CIRCLECI" ] || [ -z "$CI" ]
then
EVM_VERSIONS+=" constantinople"
fi

# And then run the Solidity unit-tests in the matrix combination of optimizer / no optimizer
# and homestead / byzantium VM, # pointing to that IPC endpoint.
for optimize in "" "--optimize"
do
for vm in homestead byzantium
for vm in $EVM_VERSIONS
do
echo "--> Running tests using "$optimize" --evm-version "$vm"..."
log=""
Expand Down

0 comments on commit 4450034

Please sign in to comment.