全局过滤器用于为 Tradefed 提供测试过滤器,这些过滤器会自动应用于调用,您无需担心测试是否支持相应过滤器。
如果配置不支持过滤,则相应过滤器不工作,但有一项好处,那就是不会像 Tradefed 中的通常情况那样抛出配置异常。这样,即使某项服务对 Tradefed 知之甚少,也能以通用方式轻松地生成和提供过滤器标志。
语法
--global-filters:include-filter [abi] module-name [test-class][#method-name]
--global-filters:exclude-filter [abi] module-name [test-class][#method-name]
其中,module-name 是唯一必须提供的部分。
例如:
- --global-filter:include-filter moduleA:将仅运行该模块
- --global-filters:include-filter moduleA class#method:将仅运行匹配的方法
如果需要更多过滤器,可以重复此选项。排除项的优先级高于包含项。