Disable the prebuilt host binary test on darwin.
Variants and paths are different there, and it is hard to test since it's only in postsubmit in TH. Test: m nothing Bug: 168558897 Change-Id: I071540b3c7ff9a9fd4104dca75079e831b1b2529
This commit is contained in:
parent
b11236d53d
commit
6a9a14663d
|
@ -274,6 +274,10 @@ func TestPrebuiltLibrarySharedStem(t *testing.T) {
|
|||
}
|
||||
|
||||
func TestPrebuiltSymlinkedHostBinary(t *testing.T) {
|
||||
if android.BuildOs != android.Linux {
|
||||
t.Skipf("Skipping host prebuilt testing that is only supported on %s not %s", android.Linux, android.BuildOs)
|
||||
}
|
||||
|
||||
ctx := testPrebuilt(t, `
|
||||
cc_prebuilt_library_shared {
|
||||
name: "libfoo",
|
||||
|
|
Loading…
Reference in New Issue