Merge "Skip TestDex2oatToolDeps on Darwin." am: ecf2dc4614

Original change: https://android-review.googlesource.com/c/platform/build/soong/+/1713990

Change-Id: I9dc64f7aa5d1f8d271646569251ea59ec79f6741
This commit is contained in:
Martin Stjernholm
2021-05-20 17:12:11 +00:00
committed by Automerger Merge Worker

View File

@@ -173,6 +173,11 @@ func enabledString(enabled bool) string {
}
func TestDex2oatToolDeps(t *testing.T) {
if android.BuildOs != android.Linux {
// The host binary paths checked below are build OS dependent.
t.Skipf("Unsupported build OS %s", android.BuildOs)
}
preparers := android.GroupFixturePreparers(
cc.PrepareForTestWithCcDefaultModules,
PrepareForTestWithJavaDefaultModulesWithoutFakeDex2oatd,