[compiler-rt] a51d196 - [ASan] Fix libfuzzer test

Florian Mayer via llvm-commits llvm-commits at lists.llvm.org
Tue Sep 6 13:38:01 PDT 2022


Author: Florian Mayer
Date: 2022-09-06T13:37:35-07:00
New Revision: a51d19636cd6e98a9e1843158d1419331b5c1342

URL: https://github.com/llvm/llvm-project/commit/a51d19636cd6e98a9e1843158d1419331b5c1342
DIFF: https://github.com/llvm/llvm-project/commit/a51d19636cd6e98a9e1843158d1419331b5c1342.diff

LOG: [ASan] Fix libfuzzer test

Added: 
    

Modified: 
    compiler-rt/test/fuzzer/buffer-overflow-on-input.test

Removed: 
    


################################################################################
diff  --git a/compiler-rt/test/fuzzer/buffer-overflow-on-input.test b/compiler-rt/test/fuzzer/buffer-overflow-on-input.test
index 6e40b75d70bcd..ede62785a8f31 100644
--- a/compiler-rt/test/fuzzer/buffer-overflow-on-input.test
+++ b/compiler-rt/test/fuzzer/buffer-overflow-on-input.test
@@ -2,4 +2,4 @@ RUN: %cpp_compiler %S/BufferOverflowOnInput.cpp -o %t-BufferOverflowOnInput
 
 RUN: not %run %t-BufferOverflowOnInput 2>&1 | FileCheck %s --check-prefix=OOB
 OOB: AddressSanitizer: heap-buffer-overflow
-OOB: is located 0 bytes to the right of 3-byte region
+OOB: is located 0 bytes after 3-byte region


        


More information about the llvm-commits mailing list