diff options
author | chriseth <chris@ethereum.org> | 2018-04-11 23:18:31 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-11 23:18:31 +0800 |
commit | d50d1f0ac1841a1d287a216451e93573fc07474e (patch) | |
tree | d24720a3bdf4d78de4436d88721e907ce91a367a /scripts | |
parent | 29bde7fc2a6f6fc82b90f6963a536553b9eea04e (diff) | |
parent | 2e73ef5ac5db406e86e3a90c89d3be4b0d666073 (diff) | |
download | dexon-solidity-d50d1f0ac1841a1d287a216451e93573fc07474e.tar dexon-solidity-d50d1f0ac1841a1d287a216451e93573fc07474e.tar.gz dexon-solidity-d50d1f0ac1841a1d287a216451e93573fc07474e.tar.bz2 dexon-solidity-d50d1f0ac1841a1d287a216451e93573fc07474e.tar.lz dexon-solidity-d50d1f0ac1841a1d287a216451e93573fc07474e.tar.xz dexon-solidity-d50d1f0ac1841a1d287a216451e93573fc07474e.tar.zst dexon-solidity-d50d1f0ac1841a1d287a216451e93573fc07474e.zip |
Merge pull request #3580 from ethereum/asm-bitshift-optim
Add simplification rule for bitwise shifting
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/tests.sh | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/scripts/tests.sh b/scripts/tests.sh index 2e40f8cb..542c932a 100755 --- a/scripts/tests.sh +++ b/scripts/tests.sh @@ -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="" |