Skip to content

Commit

Permalink
fix(levm): makefile EVM EF tests run command (#1261)
Browse files Browse the repository at this point in the history
  • Loading branch information
ilitteri authored Nov 25, 2024
1 parent 1007322 commit 1b96b4c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci_levm.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@ jobs:
- name: Download EF Tests
run: |
cd crates/vm/levm
make download-ef-tests
make download-evm-ef-tests
- name: Run tests
run: |
cd crates/vm/levm
make run-ef-tests
make run-evm-ef-tests
test:
name: Tests
runs-on: ubuntu-latest
Expand Down
8 changes: 4 additions & 4 deletions crates/vm/levm/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@ $(SPECTEST_VECTORS_DIR): $(SPECTEST_ARTIFACT)
tar -xzf $(SPECTEST_ARTIFACT) -C tmp
mv tmp/tests-14.1/GeneralStateTests $(SPECTEST_VECTORS_DIR)

download-ef-tests: $(SPECTEST_VECTORS_DIR) ## πŸ“₯ Download EF Tests
download-evm-ef-tests: $(SPECTEST_VECTORS_DIR) ## πŸ“₯ Download EF Tests

run-ef-tests: ## πŸƒβ€β™‚οΈ Run EF Tests
run-evm-ef-tests: ## πŸƒβ€β™‚οΈ Run EF Tests
cd ../../../ && \
cargo test -p ef_tests-levm --tests test
time cargo test -p ef_tests-levm --test ef_tests_levm

clean-ef-tests: ## πŸ—‘οΈ Clean test vectors
clean-evm-ef-tests: ## πŸ—‘οΈ Clean test vectors
rm -rf $(SPECTEST_VECTORS_DIR)

###### Benchmarks ######
Expand Down

0 comments on commit 1b96b4c

Please sign in to comment.