llvm-project/compiler-rt/test/fuzzer/read-binary.test
Jonathan Metzman 39b6ba9f33 [fuzzer] Read files as binary
Summary: Read corpus files as binary to avoid automatic conversions

Reviewers: Dor1s, morehouse

Reviewed By: Dor1s, morehouse

Differential Revision: https://reviews.llvm.org/D54180

llvm-svn: 346279
2018-11-06 23:25:25 +00:00

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!