Skip to content

Commit

Permalink
add eip-2929 test
Browse files Browse the repository at this point in the history
  • Loading branch information
RomarQ committed Jun 4, 2024
1 parent b6f5bb4 commit caed3bc
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,4 +52,7 @@ jobs:
jsontests/res/ethtests/GeneralStateTests/VMTests/vmBitwiseLogicOperation/ \
jsontests/res/ethtests/GeneralStateTests/VMTests/vmIOandFlowOperations/ \
jsontests/res/ethtests/GeneralStateTests/VMTests/vmLogTest/ \
jsontests/res/ethtests/GeneralStateTests/VMTests/vmTests/
jsontests/res/ethtests/GeneralStateTests/VMTests/vmTests/ \
jsontests/res/ethtests/GeneralStateTests/VMTests/vmTests/ \
jsontests/res/ethtests/GeneralStateTests/stEIP150singleCodeGasPrices/eip2929.json
8 changes: 8 additions & 0 deletions jsontests/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -73,3 +73,11 @@ fn vm_tests() {
let tests_status = run::run_single(JSON_FILENAME, false).unwrap();
tests_status.print_total();
}

#[test]
fn sqt_eip_2930() {
const JSON_FILENAME: &str =
"res/ethtests/GeneralStateTests/stEIP150singleCodeGasPrices/eip2929.json";
let tests_status = run::run_single(JSON_FILENAME, false).unwrap();
tests_status.print_total();
}

0 comments on commit caed3bc

Please sign in to comment.