From 72f667cac95b9b3c448ab0003eae2b55e7166ccb Mon Sep 17 00:00:00 2001 From: Nia Waldvogel Date: Tue, 6 Jan 2026 23:11:55 -0500 Subject: [PATCH] main (test): skips mipsle test if the emulator is missing This one specific case was missing a call to emucheck. --- main_test.go | 1 + 1 file changed, 1 insertion(+) diff --git a/main_test.go b/main_test.go index b07d6aaaa..45290bac6 100644 --- a/main_test.go +++ b/main_test.go @@ -222,6 +222,7 @@ func TestBuild(t *testing.T) { // to be sure. t.Parallel() options := optionsFromOSARCH("linux/mipsle/softfloat", sema) + emuCheck(t, options) runTest("cgo/", options, t, nil, nil) }) } else if runtime.GOOS == "windows" {