Merge "build: Default test modules to null-suite" am: b6655e0e1a
am: f2f7c7d6f6
Change-Id: I065476483b5cdb87908bd7ac46f2b1da3d501c12
This commit is contained in:
commit
4125716024
|
@ -494,6 +494,17 @@ endif
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
# For modules tagged as tests but lacking a suite tag, set null-suite as the default.
|
||||||
|
# We only support adding a default suite to native tests, native benchmarks, and instrumentation tests.
|
||||||
|
# This is because they are the only tests we currently auto-generate test configs for.
|
||||||
|
ifneq ($(filter $(my_module_tags),tests),)
|
||||||
|
ifndef LOCAL_COMPATIBILITY_SUITE
|
||||||
|
ifneq ($(filter NATIVE_TESTS NATIVE_BENCHMARK APPS, $(LOCAL_MODULE_CLASS)),)
|
||||||
|
LOCAL_COMPATIBILITY_SUITE := null-suite
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
|
||||||
###########################################################
|
###########################################################
|
||||||
## Compatibility suite files.
|
## Compatibility suite files.
|
||||||
###########################################################
|
###########################################################
|
||||||
|
|
Loading…
Reference in New Issue