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