diff options
author | Kai Nacke <kai.nacke@redstar.de> | 2019-10-11 11:59:14 +0000 |
---|---|---|
committer | Kai Nacke <kai.nacke@redstar.de> | 2019-10-11 11:59:14 +0000 |
commit | 5b5b2fd2b8b4fe66d1e57065ab0aef22b16e4a13 (patch) | |
tree | a9dbb8b8302a33a151a759cea9a7226da310c657 /llvm/docs/CommandGuide/FileCheck.rst | |
parent | 807dbee36679a8e43b25c3fcfd38e750fd4e943d (diff) | |
download | llvm-5b5b2fd2b8b4fe66d1e57065ab0aef22b16e4a13.zip llvm-5b5b2fd2b8b4fe66d1e57065ab0aef22b16e4a13.tar.gz llvm-5b5b2fd2b8b4fe66d1e57065ab0aef22b16e4a13.tar.bz2 |
[FileCheck] Implement --ignore-case option.
The FileCheck utility is enhanced to support a `--ignore-case`
option. This is useful in cases where the output of Unix tools
differs in case (e.g. case not specified by Posix).
Reviewers: Bigcheese, jakehehrlich, rupprecht, espindola, alexshap, jhenderson, MaskRay
Differential Revision: https://reviews.llvm.org/D68146
llvm-svn: 374538
Diffstat (limited to 'llvm/docs/CommandGuide/FileCheck.rst')
-rw-r--r-- | llvm/docs/CommandGuide/FileCheck.rst | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/llvm/docs/CommandGuide/FileCheck.rst b/llvm/docs/CommandGuide/FileCheck.rst index e8b324d..0072c9c 100644 --- a/llvm/docs/CommandGuide/FileCheck.rst +++ b/llvm/docs/CommandGuide/FileCheck.rst @@ -71,6 +71,11 @@ and from the command line. The :option:`--strict-whitespace` argument disables this behavior. End-of-line sequences are canonicalized to UNIX-style ``\n`` in all modes. +.. option:: --ignore-case + + By default, FileCheck uses case-sensitive matching. This option causes + FileCheck to use case-insensitive matching. + .. option:: --implicit-check-not check-pattern Adds implicit negative checks for the specified patterns between positive |