diff options
Diffstat (limited to 'compiler-rt/lib/asan/tests/asan_str_test.cc')
-rw-r--r-- | compiler-rt/lib/asan/tests/asan_str_test.cc | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/compiler-rt/lib/asan/tests/asan_str_test.cc b/compiler-rt/lib/asan/tests/asan_str_test.cc index 45005ef6b5f..dd755875e74 100644 --- a/compiler-rt/lib/asan/tests/asan_str_test.cc +++ b/compiler-rt/lib/asan/tests/asan_str_test.cc @@ -20,8 +20,18 @@ static char global_string[] = "global"; static size_t global_string_length = 6; -const char kStackReadUnderflow[] = "READ.*underflows this variable"; -const char kStackReadOverflow[] = "READ.*overflows this variable"; +const char kStackReadUnderflow[] = +#if !GTEST_USES_SIMPLE_RE + ASAN_PCRE_DOTALL + "READ.*" +#endif + "underflows this variable"; +const char kStackReadOverflow[] = +#if !GTEST_USES_SIMPLE_RE + ASAN_PCRE_DOTALL + "READ.*" +#endif + "overflows this variable"; namespace { enum class OOBKind { |