diff options
author | Ted Kremenek <kremenek@apple.com> | 2011-04-05 00:21:49 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2011-04-05 00:21:49 +0000 |
commit | 4cd6ea9989989e9f3a87b22c794ce76c6899d0a1 (patch) | |
tree | d344c62442de913d837df2cf9bec4e4121bfd9ff | |
parent | ae8ec2b8b890ad663bdeb27e69f590c71b966cb6 (diff) |
Filter our experimental checks in scan-build's checker listing.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@128865 91177308-0d34-0410-b5e6-96231b3b80d8
-rwxr-xr-x | tools/scan-build/scan-build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/scan-build/scan-build b/tools/scan-build/scan-build index 9ba94d1474..8068d5c171 100755 --- a/tools/scan-build/scan-build +++ b/tools/scan-build/scan-build @@ -1053,7 +1053,7 @@ else { print("\nAVAILABLE CHECKERS:\n\n"); my $skip = 0; while(<FROM_CHILD>) { - if (/core\.experimental/ or /debug\./ or /unix.experimental/ or /cocoa.experimental/) { + if (/experimental/) { $skip = 1; next; } |