brintos

brintos / llvm-project-archived public Read only

0
0
Text · 328 B · 7ba4e90 Raw
8 lines · plain
1## Show that --print-file-name works when the input is standard input.2 3RUN: echo abcd | llvm-strings -f - | FileCheck %s4RUN: echo abcd | llvm-strings -f | FileCheck %s5RUN: echo abcd | llvm-strings --print-file-name - | FileCheck %s6RUN: echo abcd | llvm-strings --print-file-name | FileCheck %s7CHECK: {standard input}: abcd8