8 lines · plain
1## Show that the -a/--all switch is accepted. GNU strings checks specific object2## file sections unless --all is specified. llvm-strings just looks at the entire3## file, so this option is silently ignored.4 5RUN: echo abcd | llvm-strings -a | FileCheck %s6RUN: echo abcd | llvm-strings --all | FileCheck %s7CHECK: abcd8