8 lines
320 B
Plaintext
8 lines
320 B
Plaintext
|
## Show that the -a/--all switch is accepted. GNU strings checks specific object
|
||
|
## file sections unless --all is specified. llvm-strings just looks at the entire
|
||
|
## file, so this option is silently ignored.
|
||
|
|
||
|
RUN: echo abcd | llvm-strings -a | FileCheck %s
|
||
|
RUN: echo abcd | llvm-strings --all | FileCheck %s
|
||
|
CHECK: abcd
|