8 lines · plain
1# Test that libFuzzer reads files properly.2 3# Account for the fact that echo will add a trailing newline.4RUN: echo -e "Hello\r\nWorld\r" > %t-testcase5RUN: %cpp_compiler %S/ReadBinaryTest.cpp -o %t-fuzzer6RUN: %run %t-fuzzer %t-testcase | FileCheck %s7CHECK: BINGO!8