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

/external/chromium_org/third_party/tcmalloc/chromium/src/tests/
H A Dheap-checker-death_unittest.sh80 unexpected_regexp="$1"
90 negmatches_ok=`test -z "$unexpected_regexp" || \
91 ! grep "$unexpected_regexp" "$output" >/dev/null 2>&1 || echo false`
108 echo "Output unexpectedly matched '$unexpected_regexp'"
/external/chromium_org/third_party/tcmalloc/vendor/src/tests/
H A Dheap-checker-death_unittest.sh80 unexpected_regexp="$1"
90 negmatches_ok=`test -z "$unexpected_regexp" || \
91 ! grep "$unexpected_regexp" "$output" >/dev/null 2>&1 || echo false`
108 echo "Output unexpectedly matched '$unexpected_regexp'"
/external/lldb/test/unittest2/
H A Dcase.py1030 def assertNotRegexpMatches(self, text, unexpected_regexp, msg=None):
1032 if isinstance(unexpected_regexp, basestring):
1033 unexpected_regexp = re.compile(unexpected_regexp)
1034 match = unexpected_regexp.search(text)
1039 unexpected_regexp.pattern,

Completed in 1544 milliseconds