Searched refs:MyMatch (Results 1 - 1 of 1) sorted by relevance

/openbsd-current/gnu/llvm/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_suppressions_test.cpp19 static bool MyMatch(const char *templ, const char *func) { function in namespace:__sanitizer
26 EXPECT_TRUE(MyMatch("foobar$", "foobar"));
28 EXPECT_TRUE(MyMatch("foobar", "foobar"));
29 EXPECT_TRUE(MyMatch("*foobar*", "foobar"));
30 EXPECT_TRUE(MyMatch("foobar", "prefix_foobar_postfix"));
31 EXPECT_TRUE(MyMatch("*foobar*", "prefix_foobar_postfix"));
32 EXPECT_TRUE(MyMatch("foo*bar", "foo_middle_bar"));
33 EXPECT_TRUE(MyMatch("foo*bar", "foobar"));
34 EXPECT_TRUE(MyMatch("foo*bar*baz", "foo_middle_bar_another_baz"));
35 EXPECT_TRUE(MyMatch("fo
[all...]

Completed in 119 milliseconds