diff options
-rw-r--r-- | ci_tests/ci_test_package_zip.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ci_tests/ci_test_package_zip.go b/ci_tests/ci_test_package_zip.go index 87ae6fda2..95249aa10 100644 --- a/ci_tests/ci_test_package_zip.go +++ b/ci_tests/ci_test_package_zip.go @@ -140,6 +140,9 @@ func TestPackageZipFactory() android.Module { } func (p *testPackageZip) GenerateAndroidBuildActions(ctx android.ModuleContext) { + // Never install this test package, it's for disting only + p.SkipInstall() + if !android.InList(ctx.ModuleName(), moduleNamesAllowed) { ctx.ModuleErrorf("%s is not allowed to use module type test_package") } |