Added quotes to protect wildcard am: 9d773841c9

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

Change-Id: Ie24e6e82278b195e4ef8b9fc5d60466f33583d33
This commit is contained in:
Maxim Pleshivenkov
2021-06-30 22:07:06 +00:00
committed by Automerger Merge Worker
2 changed files with 2 additions and 2 deletions

View File

@@ -94,7 +94,7 @@ func jacocoFiltersToZipCommand(includes, excludes []string) string {
if len(includes) > 0 {
specs += strings.Join(includes, " ")
} else {
specs += "**/*.class"
specs += "'**/*.class'"
}
return specs
}

View File

@@ -74,7 +74,7 @@ func TestJacocoFiltersToZipCommand(t *testing.T) {
{
name: "implicit wildcard",
includes: []string{},
out: "**/*.class",
out: "'**/*.class'",
},
{
name: "only include",