1 ## Show that llvm-strings prints the last string in the input even if no
2 ## unprintable character follows it.
4 RUN: echo -n abcdefg | llvm-strings - | FileCheck %s --check-prefix=PRINT
7 ## Show that llvm-strings does not print the last string in the input if it is
8 ## too short and no unprintable character follows it.
10 RUN: echo -n abc | llvm-strings - | FileCheck --allow-empty %s --check-prefix=NOPRINT