tree: c53974c96c9b99af0f5b636dad2d538ade69b16d [path history] [tgz]
  1. browser-side-navigation.linux.browser_tests.filter
  2. browser-side-navigation.linux.content_browsertests.filter
  3. BUILD.gn
  4. cast-linux.content_browsertests.filter
  5. isolate-extensions.browser_tests.filter
  6. isolate-extensions.content_browsertests.filter
  7. mash.browser_tests.filter
  8. mojo.fyi.browser_tests.filter
  9. OWNERS
  10. README.md
  11. site-per-process.browser_tests.filter
  12. site-per-process.content_browsertests.filter
  13. site-per-process.interactive_ui_tests.filter
testing/buildbot/filters/README.md

Test filter files

Summary

This directory contains files that list tests that are not yet ready to run in a particular mode. For example - the site-per-process.browser_tests.filter file lists tests that should be excluded when running browser_tests in --site-per-process mode.

File syntax

Contents of test filter files follow the syntax below:

  • Empty lines are ignored
  • Lines starting with the ‘#’ character are treated as comments and ignored.
  • All other lines specify a single test name pattern.
    • Negative patterns: Patterns prefixed with the ‘-’ character specify tests to exclude from a test run.
    • Positive patterns: All other patterns specify tests to include in a test run.

A test will be executed if and only if it matches any of the positive patterns but does not match any of the negative patterns (please see documentation of --gtest_filter for more details and examples).

Please see [https://crbug.com/587527] for discussion how “positive” and “negative” test patterns should be combined in presence of both the --gtest_filter and the --test-launcher-filter-file command line flags.

Example test filter file for excluding a set of tests:

# crbug.com/417518: Get tests working w/ --site-per-process
-BrowserTest.OtherRedirectsDontForkProcess
-ChromeRenderProcessHostTest.*
-ReferrerPolicyTest.HttpsRedirect

# crbug.com/448592: Get extension browsertests working w/ --site-per-process
-IsolatedAppTest.CookieIsolation
-IsolatedAppTest.CrossProcessClientRedirect
-IsolatedAppTest.IsolatedAppProcessModel
-IsolatedAppTest.SubresourceCookieIsolation

Usage

When running tests on desktop platforms, the test filter file can be specified using --test-launcher-filter-file command line flag. Example test invocation:

$ out/dbg/content_browsertests \
    --site-per-process \
    --test-launcher-filter-file=testing/buildbot/filters/site-per-process.content_browsertests.filter

When running tests on Android, the test filter file can be specified using --gtest-filter-file command line flag. Example test invocation:

$ out/android/bin/run_content_browsertests \
    --test-arguments=--site-per-process \
    --gtest-filter-file=testing/buildbot/filters/site-per-process.content_browsertests.filter

Applicability

Test filter files described here are currently only supported for gtest-based tests.

For excluding layout tests when running with a particular command line flag, see third_party/WebKit/LayoutTests/FlagExpectations/README.txt.

Adding new test filter files

Please use the following conventions when naming the new file:

  • Please include the name of the test executable (e.g. content_browsertests).
  • Please use .filter suffix.
  • Feel free to add other relevant things into the file name (e.g. the mode the file applies to - for example site-per-process).

When adding a new file, please update //testing/buildbot/filters/BUILD.gn.