1## Show that the -a/--all switch is accepted. GNU strings checks specific object 2## file sections unless --all is specified. llvm-strings just looks at the entire 3## file, so this option is silently ignored. 4 5RUN: echo abcd | llvm-strings -a | FileCheck %s 6RUN: echo abcd | llvm-strings --all | FileCheck %s 7CHECK: abcd 8