Skip to content

Commit

Permalink
working on scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
tutugordillo committed Jan 6, 2025
1 parent 9ba3d08 commit bdd5bfa
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions scripts/run_experiments.sh
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,19 @@ find "$DIRECTORIO_BASE" -type f -name "*standard_input.json" | while read -r yul

echo "python3 replace_bytecode_test.py $yul_dir/test $yul_dir/$yul_base.log"

/Users/pablo/Repositorios/ethereum/solidity/build/test/tools/testrunner /Users/pablo/Repositorios/ethereum/evmone/build/lib/libevmone.dylib $yul_dir/test $yul_dir/resultOriginal.json

/Users/pablo/Repositorios/ethereum/solidity/build/test/tools/testrunner /Users/pablo/Repositorios/ethereum/evmone/build/lib/libevmone.dylib $yul_dir/test_grey $yul_dir/resultGrey.json

if diff $yul_dir/resultOriginal.json $yul_dir/resultGrey.json > /dev/null; then
echo "[RES]: Test passed."
else
echo "[RES]: Test failed."
fi


echo "*************************************"


done

Expand Down

0 comments on commit bdd5bfa

Please sign in to comment.