Merge "Skip TestDex2oatToolDeps on Darwin." am: ecf2dc4614 am: 8e40981807

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

Change-Id: I661e1f391565fc4c638cd59baa25412164f4d08f
This commit is contained in:
Martin Stjernholm
2021-05-20 17:28:37 +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,