Commit 45582fcc authored by Mark Tyneway's avatar Mark Tyneway Committed by GitHub

l2geth: skip unused tests (#2408)

The tests include:
- `TestBoundedForkedSync62`
- `TestBoundedForkedSync63Full`
- `TestBoundedForkedSync63Fast`
- `TestBoundedForkedSync64Full`
- `TestBoundedForkedSync64Fast`
- `TestBoundedForkedSync64Light`

None of these tests cover code that we use in production.
These tests were flaky upstream and eventually fixed.
No major changes to this codebase are planned before
deprecating it.
Co-authored-by: default avatarMatthew Slipper <me@matthewslipper.com>
parent 7269212c
---
'@eth-optimism/l2geth': patch
---
Skip unused tests in l2geth
...@@ -666,6 +666,7 @@ func TestBoundedForkedSync64Fast(t *testing.T) { testBoundedForkedSync(t, 64, F ...@@ -666,6 +666,7 @@ func TestBoundedForkedSync64Fast(t *testing.T) { testBoundedForkedSync(t, 64, F
func TestBoundedForkedSync64Light(t *testing.T) { testBoundedForkedSync(t, 64, LightSync) } func TestBoundedForkedSync64Light(t *testing.T) { testBoundedForkedSync(t, 64, LightSync) }
func testBoundedForkedSync(t *testing.T, protocol int, mode SyncMode) { func testBoundedForkedSync(t *testing.T, protocol int, mode SyncMode) {
t.Skip("Unused in Optimism")
t.Parallel() t.Parallel()
tester := newTester() tester := newTester()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment