Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

statetest, ci: Update EOF state tests #625

Merged
merged 1 commit into from
Apr 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -414,7 +414,7 @@ jobs:
- build_silkworm:
commit: 30ca8b324fcffb574c23c09fcba6386e57a7a5af
- download_execution_tests:
rev: v11.3
rev: v12.2
- run:
name: "Silkworm-driven blockchain tests (Advanced)"
working_directory: ~/build
Expand All @@ -437,11 +437,13 @@ jobs:
steps:
- build
- download_execution_tests:
commit: v11.3
rev: v12.2
- run:
name: "State tests"
working_directory: ~/build
command: EVMONE_PRECOMPILES_STUB=~/project/test/state/precompiles_stub.json bin/evmone-statetest ~/tests/GeneralStateTests ~/tests/LegacyTests/Constantinople/GeneralStateTests
command: |
export EVMONE_PRECOMPILES_STUB=~/project/test/state/precompiles_stub.json
bin/evmone-statetest ~/tests/GeneralStateTests ~/tests/EIPTests/StateTests/stEOF ~/tests/LegacyTests/Constantinople/GeneralStateTests
- collect_coverage_gcc
- upload_coverage:
flags: statetests
Expand Down
2 changes: 0 additions & 2 deletions test/statetest/statetest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,6 @@ int main(int argc, char* argv[])
// The default test filter. To enable all tests use `--gtest_filter=*`.
testing::FLAGS_gtest_filter =
"-"
// Unsupported or broken EIP implementations:
"EIPTests/stEOF/*.*:" // EOF implementation is broken
// Slow tests:
"stCreateTest.CreateOOGafterMaxCodesize:" // pass
"stQuadraticComplexityTest.Call50000_sha256:" // pass
Expand Down