diff --git a/cannon/mipsevm/multithreaded/instrumented_test.go b/cannon/mipsevm/multithreaded/instrumented_test.go index b3ce2d95eac3..20ce2b9cc0b0 100644 --- a/cannon/mipsevm/multithreaded/instrumented_test.go +++ b/cannon/mipsevm/multithreaded/instrumented_test.go @@ -41,7 +41,7 @@ func TestInstrumentedState_MultithreadedProgram(t *testing.T) { var stdOutBuf, stdErrBuf bytes.Buffer us := NewInstrumentedState(state, oracle, io.MultiWriter(&stdOutBuf, os.Stdout), io.MultiWriter(&stdErrBuf, os.Stderr), testutil.CreateLogger(), nil) - for i := 0; i < 1_000_000; i++ { + for i := 0; i < 2_000_000; i++ { if us.GetState().GetExited() { break } diff --git a/cannon/testdata/example/alloc/go.mod b/cannon/testdata/example/alloc/go.mod index d4d3c23faf2d..f0525fb68d5a 100644 --- a/cannon/testdata/example/alloc/go.mod +++ b/cannon/testdata/example/alloc/go.mod @@ -1,8 +1,8 @@ module alloc -go 1.21 +go 1.22 -toolchain go1.21.1 +toolchain go1.22.0 require github.com/ethereum-optimism/optimism v0.0.0 diff --git a/cannon/testdata/example/claim/go.mod b/cannon/testdata/example/claim/go.mod index c70d9906f06c..be3ddc7c0040 100644 --- a/cannon/testdata/example/claim/go.mod +++ b/cannon/testdata/example/claim/go.mod @@ -1,8 +1,8 @@ module claim -go 1.21 +go 1.22 -toolchain go1.21.1 +toolchain go1.22.0 require github.com/ethereum-optimism/optimism v0.0.0 diff --git a/cannon/testdata/example/entry/go.mod b/cannon/testdata/example/entry/go.mod index 2e4d29124f54..296b95426437 100644 --- a/cannon/testdata/example/entry/go.mod +++ b/cannon/testdata/example/entry/go.mod @@ -1,3 +1,5 @@ module entry -go 1.21 +go 1.22 + +toolchain go1.22.0 diff --git a/cannon/testdata/example/hello/go.mod b/cannon/testdata/example/hello/go.mod index da6c43db676b..b54bb78c6aee 100644 --- a/cannon/testdata/example/hello/go.mod +++ b/cannon/testdata/example/hello/go.mod @@ -1,3 +1,5 @@ module hello -go 1.20 +go 1.22 + +toolchain go1.22.0 diff --git a/cannon/testdata/example/multithreaded/go.mod b/cannon/testdata/example/multithreaded/go.mod index a075941f46c3..e1bdb77a9aff 100644 --- a/cannon/testdata/example/multithreaded/go.mod +++ b/cannon/testdata/example/multithreaded/go.mod @@ -1,3 +1,5 @@ module multithreaded -go 1.21 +go 1.22 + +toolchain go1.22.0