From d1a7a6560b7fc055ba83ed782d48d387990b8813 Mon Sep 17 00:00:00 2001 From: Stanislav Pankevich Date: Fri, 29 Nov 2019 11:18:11 +0100 Subject: [PATCH] README: Update implemented features --- README.md | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 4b85775..a1e90a4 100644 --- a/README.md +++ b/README.md @@ -27,14 +27,15 @@ tests suite which uses only a very limited subset of FileCheck's features which are as follows: - Commands (both substring and regex matching): - - [ ] `CHECK` - - [ ] `CHECK-NEXT` - - [ ] `CHECK-NOT` - - [ ] `CHECK-EMPTY` + - [x] `CHECK` + - [x] `CHECK-NEXT` + - [x] `CHECK-NOT` + - [x] `CHECK-EMPTY` + - Options: - - [ ] `--strict-whitespace` - - [ ] `--match-full-lines` - - [ ] `--check-prefix` + - [x] `--strict-whitespace` + - [x] `--match-full-lines` + - [x] `--check-prefix` When this is done, it feels like a good idea to implement full FileCheck's contract and be 100% compatible with the C++ version.