Home
last modified time | relevance | path

Searched refs:SubstPattern (Results 1 – 1 of 1) sorted by relevance

/build/kati/
Dstrutil_test.cc57 string SubstPattern(StringPiece str, StringPiece pat, StringPiece subst) { in SubstPattern() function
64 ASSERT_EQ(SubstPattern("x.c", "%.c", "%.o"), "x.o"); in TestSubstPattern()
65 ASSERT_EQ(SubstPattern("c.x", "c.%", "o.%"), "o.x"); in TestSubstPattern()
66 ASSERT_EQ(SubstPattern("x.c.c", "%.c", "%.o"), "x.c.o"); in TestSubstPattern()
67 ASSERT_EQ(SubstPattern("x.x y.c", "%.c", "%.o"), "x.x y.o"); in TestSubstPattern()
68 ASSERT_EQ(SubstPattern("x.%.c", "%.%.c", "OK"), "OK"); in TestSubstPattern()
69 ASSERT_EQ(SubstPattern("x.c", "x.c", "OK"), "OK"); in TestSubstPattern()
70 ASSERT_EQ(SubstPattern("x.c.c", "x.c", "XX"), "x.c.c"); in TestSubstPattern()
71 ASSERT_EQ(SubstPattern("x.x.c", "x.c", "XX"), "x.x.c"); in TestSubstPattern()