From 22bc099c020181d377f814fa4d6ab8a3655e6a0f Mon Sep 17 00:00:00 2001 From: Dan Shi Date: Wed, 16 Sep 2020 15:51:28 -0700 Subject: [PATCH] Force extra config file to be .config TradeFed only supports .config file as test config. Bug: 163344047 Test: m HelloWorldTests Change-Id: Ib963d04fc308b9c319d5b59f50f9ca9b5b575b72 --- core/base_rules.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/base_rules.mk b/core/base_rules.mk index 1b418983d..58be7a2d7 100644 --- a/core/base_rules.mk +++ b/core/base_rules.mk @@ -766,7 +766,7 @@ else $(foreach test_config_file, $(LOCAL_EXTRA_FULL_TEST_CONFIGS), \ $(foreach suite, $(LOCAL_COMPATIBILITY_SUITE), \ $(eval my_compat_dist_config_$(suite) += $(foreach dir, $(call compatibility_suite_dirs,$(suite)), \ - $(test_config_file):$(dir)/$(notdir $(test_config_file)))))) + $(test_config_file):$(dir)/$(basename $(notdir $(test_config_file))).config)))) endif ifneq (,$(wildcard $(LOCAL_PATH)/DynamicConfig.xml))