e9f1b38984
* Make it possible to expose jsontests using feature flag * Add start_stop_hook for jsontests * Fix evmbin compile * Implement vm jsontests times to tsv result * Use /usr/bin/env to avoid errors on non-Debian systems * Move evmbin/bench.sh to scripts and add vm_jsontests script for convenience * Add tempdir as required deps for test-helpers * Address grumbles on comments * Detect file/folder automatically and add command docs * Fix bench script * times -> timings * typo: wrong if condition
26 lines
968 B
Bash
Executable File
26 lines
968 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
cargo build --release -p evmbin
|
|
|
|
# LOOP TEST
|
|
CODE1=606060405260005b620f42408112156019575b6001016007565b600081905550600680602b6000396000f3606060405200
|
|
if [ -x "$(command -v ethvm)" ]; then
|
|
ethvm --code $CODE1
|
|
echo "^^^^ ethvm"
|
|
fi
|
|
./target/release/parity-evm stats --code $CODE1 --gas 4402000
|
|
echo "^^^^ usize"
|
|
./target/release/parity-evm stats --code $CODE1
|
|
echo "^^^^ U256"
|
|
|
|
# RNG TEST
|
|
CODE2=6060604052600360056007600b60005b620f4240811215607f5767ffe7649d5eca84179490940267f47ed85c4b9a6379019367f8e5dd9a5c994bba9390930267f91d87e4b8b74e55019267ff97f6f3b29cda529290920267f393ada8dd75c938019167fe8d437c45bb3735830267f47d9a7b5428ffec019150600101600f565b838518831882186000555050505050600680609a6000396000f3606060405200
|
|
if [ -x "$(command -v ethvm)" ]; then
|
|
ethvm --code $CODE2
|
|
echo "^^^^ ethvm"
|
|
fi
|
|
./target/release/parity-evm stats --code $CODE2 --gas 143020115
|
|
echo "^^^^ usize"
|
|
./target/release/parity-evm stats --code $CODE2
|
|
echo "^^^^ U256"
|