DescriptionIntroduce base::TestSuite::DisableTests().
Disables tests that match the |filter|. This gives the test suite an
opportunity to disable tests at runtime. Must be called before Run()
to take effect.
For example, to disable "FooTest" when IsFooSupported() is false:
if (!IsFooSupported())
DisableTests("FooTest.*");
Run();
BUG=304956
TEST=Tested on Nexus 7 v2.
Patch Set 1 #
Total comments: 1
Patch Set 2 : now works on Android #
Messages
Total messages: 2 (0 generated)
|