From 0254289ab2423cec855044848ccca817ae0f45de Mon Sep 17 00:00:00 2001 From: David Bolvansky Date: Tue, 17 Sep 2019 17:07:31 +0000 Subject: [ASAN] Adjust asan tests due to new optimizations git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@372141 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/asan/tests/asan_str_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/asan/tests/asan_str_test.cpp b/lib/asan/tests/asan_str_test.cpp index cc5bd2b44..50e1ab441 100644 --- a/lib/asan/tests/asan_str_test.cpp +++ b/lib/asan/tests/asan_str_test.cpp @@ -454,7 +454,7 @@ TEST(AddressSanitizer, StrNCatOOBTest) { size_t from_size = Ident(20); char *from = MallocAndMemsetString(from_size); // Normal strncat calls. - strncat(to, from, 0); + strncat(to, from, 1); strncat(to, from, from_size); from[from_size - 1] = '\0'; strncat(to, from, 2 * from_size); -- cgit v1.2.1