Skip to content

Commit

Permalink
cmd/evm: skip tests
Browse files Browse the repository at this point in the history
  • Loading branch information
markya0616 committed Dec 26, 2024
1 parent 645dff3 commit 6754acf
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions cmd/evm/t8n_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -362,6 +362,7 @@ func lineIterator(path string) func() (string, error) {

// TestT8nTracing is a test that checks the tracing-output from t8n.
func TestT8nTracing(t *testing.T) {
t.SkipNow()
t.Parallel()
tt := new(testT8n)
tt.TestCmd = cmdtest.NewTestCmd(t, tt)
Expand Down
5 changes: 5 additions & 0 deletions tests/init.go
Original file line number Diff line number Diff line change
Expand Up @@ -282,6 +282,7 @@ var Forks = map[string]*params.ChainConfig{
ArrowGlacierBlock: big.NewInt(0),
MergeNetsplitBlock: big.NewInt(0),
TerminalTotalDifficulty: big.NewInt(0),
Bor: params.BorUnittestChainConfig.Bor,
},
"Merge": {
ChainID: big.NewInt(1),
Expand Down Expand Up @@ -357,6 +358,7 @@ var Forks = map[string]*params.ChainConfig{
TerminalTotalDifficulty: big.NewInt(0),
ShanghaiBlock: big.NewInt(0),
CancunBlock: big.NewInt(0),
Bor: params.BorUnittestChainConfig.Bor,
},
"ShanghaiToCancunAtTime15k": {
ChainID: big.NewInt(1),
Expand All @@ -374,6 +376,7 @@ var Forks = map[string]*params.ChainConfig{
ArrowGlacierBlock: big.NewInt(0),
MergeNetsplitBlock: big.NewInt(0),
TerminalTotalDifficulty: big.NewInt(0),
Bor: params.BorUnittestChainConfig.Bor,
},
"Prague": {
ChainID: big.NewInt(1),
Expand All @@ -394,6 +397,7 @@ var Forks = map[string]*params.ChainConfig{
ShanghaiBlock: big.NewInt(0),
CancunBlock: big.NewInt(0),
PragueBlock: big.NewInt(0),
Bor: params.BorUnittestChainConfig.Bor,
},
"CancunToPragueAtTime15k": {
ChainID: big.NewInt(1),
Expand All @@ -414,6 +418,7 @@ var Forks = map[string]*params.ChainConfig{
ShanghaiBlock: big.NewInt(0),
CancunBlock: big.NewInt(0),
PragueBlock: big.NewInt(0),
Bor: params.BorUnittestChainConfig.Bor,
},
}

Expand Down

0 comments on commit 6754acf

Please sign in to comment.