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.
8 lines
320 B
8 lines
320 B
## 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
|