Index: ppapi/tests/test_case.cc |
diff --git a/ppapi/tests/test_case.cc b/ppapi/tests/test_case.cc |
index 8245c25a743ff9875a02214e258b591f94eb613d..bcee6c3b73dc0af22253a9184f4123087ddacfc5 100644 |
--- a/ppapi/tests/test_case.cc |
+++ b/ppapi/tests/test_case.cc |
@@ -88,3 +88,9 @@ bool TestCase::EnsureRunningOverHTTP() { |
return true; |
} |
+ |
+bool TestCase::MatchesFilter(const std::string& test_name, |
+ const std::string& filter) { |
+ return filter.empty() || (test_name == filter); |
+} |
+ |