You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
363 B
11 lines
363 B
## Show that --print-file-name prints the name of the file before each line in
|
|
## the output.
|
|
|
|
RUN: echo abcd > %t
|
|
RUN: echo efg >> %t
|
|
RUN: echo hijk >> %t
|
|
RUN: llvm-strings -f %t | FileCheck %s --strict-whitespace -DFILE=%t
|
|
RUN: llvm-strings --print-file-name %t | FileCheck %s --strict-whitespace -DFILE=%t
|
|
CHECK: [[FILE]]: abcd
|
|
CHECK-NEXT: [[FILE]]: hijk
|