File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -100,6 +100,7 @@ jobs:
100
100
path : testpath
101
101
sparse-checkout : |
102
102
GeneralStateTests
103
+ BlockchainTests
103
104
EOFTests
104
105
105
106
- name : Checkout ethereum/legacytests
@@ -110,6 +111,7 @@ jobs:
110
111
path : legacytestpath
111
112
sparse-checkout : |
112
113
Cancun/GeneralStateTests
114
+ Cancun/BlockchainTests
113
115
114
116
# This command diffs the file and filters in new lines
115
117
- name : Parse converted tests from converted-ethereum-tests.txt
@@ -197,7 +199,7 @@ jobs:
197
199
198
200
PATCH_TEST_PATH=${{ github.workspace }}/evmtest_coverage/coverage/PATCH_TESTS
199
201
mkdir -p $PATCH_TEST_PATH
200
- find fixtures/blockchain_tests -type f -name "*.json" -exec cp {} $PATCH_TEST_PATH \;
202
+ find fixtures/blockchain_tests -type f -name "*.json" -exec bash -c ' cp "$0" "$1/blockchain_$(basename "$0")"' {} " $PATCH_TEST_PATH" \;
201
203
find fixtures/state_tests -type f -name "*.json" -exec cp {} $PATCH_TEST_PATH \;
202
204
find fixtures/eof_tests -type f -name "*.json" -exec cp {} $PATCH_TEST_PATH \;
203
205
You can’t perform that action at this time.
0 commit comments