diff options
author | 2025-03-06 20:09:14 +0000 | |
---|---|---|
committer | 2025-03-06 22:55:40 +0000 | |
commit | b1a4b7ca4b6ae52698b81524000f31a23422b5c6 (patch) | |
tree | 301d127ee07fe05d49442f1e12f59d8c0ab0d8f7 /ci_tests | |
parent | 21d5753dbdf9e6c4d3a9f5d17deb72c58c222d6a (diff) |
Correct the filename of platform_tests disted
Test: CI
Bug: 388850000
Change-Id: I9cefc6b7100c69325fc364e46e56290c3b489fb9
Diffstat (limited to 'ci_tests')
-rw-r--r-- | ci_tests/ci_test_package_zip.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ci_tests/ci_test_package_zip.go b/ci_tests/ci_test_package_zip.go index 0db3f9f67..f700a7061 100644 --- a/ci_tests/ci_test_package_zip.go +++ b/ci_tests/ci_test_package_zip.go @@ -149,7 +149,7 @@ func (p *testPackageZip) GenerateAndroidBuildActions(ctx android.ModuleContext) // dist the test output if ctx.ModuleName() == "platform_tests" { - distedName := ctx.Config().Getenv("TARGET_PRODUCT") + "-tests-" + ctx.Config().BuildId() + ".zip" + distedName := ctx.Config().Getenv("TARGET_PRODUCT") + "-tests-FILE_NAME_TAG_PLACEHOLDER.zip" ctx.DistForGoalWithFilename("platform_tests", p.output, distedName) } } |