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:
Martin Stjernholm 2020-09-15 02:56:19 +01:00
parent b11236d53d
commit 6a9a14663d
1 changed files with 4 additions and 0 deletions

View File

@ -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",