mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-27 19:06:05 +00:00
8 lines
268 B
Plaintext
8 lines
268 B
Plaintext
![]() |
# Test that libFuzzer reads files properly.
|
||
|
|
||
|
# Account for the fact that echo will add a trailing newline.
|
||
|
RUN: echo -e "Hello\r\nWorld\r" > %t-testcase
|
||
|
RUN: %cpp_compiler %S/ReadBinaryTest.cpp -o %t-fuzzer
|
||
|
RUN: %run %t-fuzzer %t-testcase | FileCheck %s
|
||
|
CHECK: BINGO!
|