mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-17 17:33:47 +00:00
tests: skip empty 7702 auth tx test
This commit is contained in:
parent
939bfe0805
commit
0b5ca640df
1 changed files with 7 additions and 3 deletions
|
|
@ -44,11 +44,12 @@ func TestTransaction(t *testing.T) {
|
||||||
// internally to calculate the cost
|
// internally to calculate the cost
|
||||||
txt.skipLoad("^ttValue/TransactionWithHighValueOverflow.json")
|
txt.skipLoad("^ttValue/TransactionWithHighValueOverflow.json")
|
||||||
|
|
||||||
// Test requires EVM execution and should be probably done as a state test.
|
// The size of a create tx's initcode is only checked during the state
|
||||||
|
// transition
|
||||||
txt.skipLoad("^ttEIP3860/DataTestInitCodeTooBig.json")
|
txt.skipLoad("^ttEIP3860/DataTestInitCodeTooBig.json")
|
||||||
|
|
||||||
// The following tests require the tx precheck to be performed.
|
// The following tests require the tx precheck to be performed
|
||||||
// TODO(s1na): expose stateTransition.precheck publicly to be able to run these tests.
|
// TODO(s1na): expose stateTransition.precheck publicly to be able to run these tests
|
||||||
txt.skipLoad("^ttEIP1559/maxPriorityFeePerGass32BytesValue.json")
|
txt.skipLoad("^ttEIP1559/maxPriorityFeePerGass32BytesValue.json")
|
||||||
txt.skipLoad("^ttEIP1559/maxPriorityFeePerGasOverflow.json")
|
txt.skipLoad("^ttEIP1559/maxPriorityFeePerGasOverflow.json")
|
||||||
txt.skipLoad("^ttEIP1559/maxFeePerGas32BytesValue.json")
|
txt.skipLoad("^ttEIP1559/maxFeePerGas32BytesValue.json")
|
||||||
|
|
@ -70,6 +71,9 @@ func TestExecutionSpecTransaction(t *testing.T) {
|
||||||
}
|
}
|
||||||
st := new(testMatcher)
|
st := new(testMatcher)
|
||||||
|
|
||||||
|
// Emptiness of authorization list is only validated during the tx precheck
|
||||||
|
st.skipLoad("^prague/eip7702_set_code_tx/invalid_tx/empty_authorization_list.json")
|
||||||
|
|
||||||
st.walk(t, executionSpecTransactionTestDir, func(t *testing.T, name string, test *TransactionTest) {
|
st.walk(t, executionSpecTransactionTestDir, func(t *testing.T, name string, test *TransactionTest) {
|
||||||
cfg := params.MainnetChainConfig
|
cfg := params.MainnetChainConfig
|
||||||
if err := st.checkFailure(t, test.Run(cfg)); err != nil {
|
if err := st.checkFailure(t, test.Run(cfg)); err != nil {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue