diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 8de37da97..69859fd26 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -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 + diff --git a/jsontests/src/lib.rs b/jsontests/src/lib.rs index 3dca24ae6..28661212f 100644 --- a/jsontests/src/lib.rs +++ b/jsontests/src/lib.rs @@ -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(); +}