Remove quoting of Jacoco exclusions
So that "*" works again Test: m EMMA_INSTRUMENT=true Bug: 68056327 Change-Id: Ieaad8bfbdeb0562910e6027682663049b0187c5e
This commit is contained in:
@@ -39,13 +39,13 @@ ifeq ($(LOCAL_EMMA_INSTRUMENT),true)
|
|||||||
my_include_args :=
|
my_include_args :=
|
||||||
endif
|
endif
|
||||||
|
|
||||||
# replace '.' with '/' and ',' with ' ', and quote each arg
|
# replace '.' with '/' and ',' with ' '
|
||||||
ifneq ($(strip $(my_exclude_filter)),)
|
ifneq ($(strip $(my_exclude_filter)),)
|
||||||
my_exclude_args := $(my_exclude_filter)
|
my_exclude_args := $(my_exclude_filter)
|
||||||
|
|
||||||
my_exclude_args := $(subst .,/,$(my_exclude_args))
|
my_exclude_args := $(subst .,/,$(my_exclude_args))
|
||||||
my_exclude_args := $(subst $(comma)$(comma),$(comma),$(my_exclude_args))
|
my_exclude_args := $(subst $(comma)$(comma),$(comma),$(my_exclude_args))
|
||||||
my_exclude_args := '$(subst $(comma),' ', $(my_exclude_args))'
|
my_exclude_args := $(subst $(comma), ,$(my_exclude_args))
|
||||||
else
|
else
|
||||||
my_exclude_args :=
|
my_exclude_args :=
|
||||||
endif
|
endif
|
||||||
|
Reference in New Issue
Block a user