From 2092c0a879f30d49d7b37f333f4547574b8afe0d Mon Sep 17 00:00:00 2001 From: Takeshi Yoneda Date: Sat, 1 Jun 2024 12:45:45 -0700 Subject: [PATCH] Runs the test case previously failing due to a bug in Rosseta 2 (#2224) This case has been skipped due to a bug I found in Rosetta 2. The bug was fixed in the latest macOS, so enable it now. Signed-off-by: Takeshi Yoneda --- internal/integration_test/fuzzcases/fuzzcases_test.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/internal/integration_test/fuzzcases/fuzzcases_test.go b/internal/integration_test/fuzzcases/fuzzcases_test.go index ac9f74bcc5..6c268ecffd 100644 --- a/internal/integration_test/fuzzcases/fuzzcases_test.go +++ b/internal/integration_test/fuzzcases/fuzzcases_test.go @@ -6,7 +6,6 @@ import ( "encoding/hex" "fmt" "math" - "runtime" "testing" "github.com/tetratelabs/wazero" @@ -887,9 +886,6 @@ func Test2031(t *testing.T) { if !platform.CompilerSupported() { return } - if runtime.GOARCH == "amd64" && runtime.GOOS == "darwin" { - t.Skip() - } run(t, func(t *testing.T, r wazero.Runtime) { mod, err := r.Instantiate(ctx, getWasmBinary(t, "2031")) require.NoError(t, err)