Skip install deps that is in "data" partition
when standalone_test is enabled, they are already installed
Bug:352559760
Bug:392663036
Change-Id: I6e39eaf4fd8e050b555d4b3f610c502ea4dce560
Test: m bionic-unit-tests
Test: m libunwindstack_unit_test
diff --git a/cc/test.go b/cc/test.go
index d2c4b28..8b68c55 100644
--- a/cc/test.go
+++ b/cc/test.go
@@ -455,6 +455,9 @@
if standaloneTestDep.SkipInstall() {
continue
}
+ if standaloneTestDep.Partition() == "data" {
+ continue
+ }
test.binaryDecorator.baseInstaller.installStandaloneTestDep(ctx, standaloneTestDep)
}
}