Merge "Skip TestDex2oatToolDeps on Darwin."

This commit is contained in:
Martin Stjernholm 2021-05-20 16:52:30 +00:00 committed by Gerrit Code Review
commit ecf2dc4614

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,