Skip failing test on mac am: 9a4f3f7ea8 am: a9ff20226e
am: 0c39a64d3a
Change-Id: I12bedeced21bc8f8f6bba8b7ff20e7ed09cadaab
diff --git a/cc/proto_test.go b/cc/proto_test.go
index 4f0de78..a7fcef9 100644
--- a/cc/proto_test.go
+++ b/cc/proto_test.go
@@ -15,6 +15,7 @@
package cc
import (
+ "runtime"
"strings"
"testing"
@@ -37,6 +38,9 @@
})
t.Run("plugin", func(t *testing.T) {
+ if runtime.GOOS != "linux" {
+ t.Skip("TODO(b/129763458): cc_binary_host tests fail on mac when trying to exec xcrun")
+ }
ctx := testCc(t, `
cc_binary_host {
name: "protoc-gen-foobar",