brintos

brintos / llvm-project-archived public Read only

0
0
Text · 363 B · 7284970 Raw
11 lines · plain
1## Show that --print-file-name prints the name of the file before each line in2## the output.3 4RUN: echo abcd > %t5RUN: echo efg >> %t6RUN: echo hijk >> %t7RUN: llvm-strings -f %t | FileCheck %s --strict-whitespace -DFILE=%t8RUN: llvm-strings --print-file-name %t | FileCheck %s --strict-whitespace -DFILE=%t9CHECK:      [[FILE]]: abcd10CHECK-NEXT: [[FILE]]: hijk11