From dfcceb6ab58bc3dadfeb7fb2c54a76cf72fc44b3 Mon Sep 17 00:00:00 2001 From: Richard Date: Tue, 9 Jan 2024 21:09:19 -0700 Subject: [PATCH] Add Simplify Boolean Expression test results --- results/ClangTidyResults.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/results/ClangTidyResults.md b/results/ClangTidyResults.md index 7717c02..f4c58e7 100644 --- a/results/ClangTidyResults.md +++ b/results/ClangTidyResults.md @@ -13,6 +13,7 @@ Version: 17.0.6 * **Replace Iterative For With Range For** available through check [*modernize-loop-convert*](https://clang.llvm.org/extra/clang-tidy/checks/modernize/loop-convert.html) * **Replace `NULL`/`0` With `nullptr`** available through check [*modernize-use-nullptr*](https://clang.llvm.org/extra/clang-tidy/checks/modernize/use-nullptr.html) * **Replace Type With `auto`** available through check [*modernize-use-auto*](https://clang.llvm.org/extra/clang-tidy/checks/modernize/use-auto.html) +* **Simplify Boolean Expression** available through check [*readability-simplify-boolean-expression*](https://clang.llvm.org/extra/clang-tidy/checks/readability/simplify-boolean-expr.html) ## Add Block Delimiter Case | Result @@ -192,3 +193,20 @@ RTWA29 | Pass RTWA30 | Pass RTWA31 | Pass RTWA32 | Pass + +## Simplify Boolean Expression +Case | Result +---- | ------ +SB1 | Pass +SB2 | Pass +SB3 | Pass +SB4 | Pass +SB5 | Failure +SB6 | Pass +SB7 | Pass +SB8 | Failure +SB9 | Failure +SB10 | Failure +SB11 | Failure +SB12 | Failure +SB13 | Failure