As we get close to making SingleProcessMash on by default, we need to remove the filter files and instead have early outs. Having early outs means the test passes with SPM disabled or enabled. The tests should be converted to something like:
TEST(...) {
if (features::IsSingleProcessMash())
return; // TODO...
}
Ideally this is in the TEST body, but there may need to be early outs in SetUp/TearDown() as well.
These files need to be removed:
testing/buildbot/filters/chromeos.single_process_mash.browser_tests.filter
testing/buildbot/filters/chromeos.single_process_mash.content_browsertests.filter
testing/buildbot/filters/chromeos.single_process_mash.interactive_ui_tests.filter
testing/buildbot/filters/chromeos.single_process_mash.unit_tests.filter
Comment 1 by sky@chromium.org
, Dec 18Status: Started (was: Untriaged)