diff options
author | Dan George <dgeorge83616@yahoo.com> | 2021-11-15 03:34:46 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-15 20:34:46 +0900 |
commit | d72a9d64ff4f9ff7fef32d180363180abf4e1f0b (patch) | |
tree | a0c3bfb56dbf7f5e7c954f6d8ab8e4c1dad814c7 /test | |
parent | 1e0e76bf9619a3ce21663165283f9971556c95b3 (diff) | |
download | ale-d72a9d64ff4f9ff7fef32d180363180abf4e1f0b.zip |
Add cppcheck handler match on misra msg (#3980)
Co-authored-by: Dan George <dgeorge@anduril.com>
Diffstat (limited to 'test')
-rw-r--r-- | test/handler/test_cppcheck_handler.vader | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/test/handler/test_cppcheck_handler.vader b/test/handler/test_cppcheck_handler.vader index 2a740722..ef161f44 100644 --- a/test/handler/test_cppcheck_handler.vader +++ b/test/handler/test_cppcheck_handler.vader @@ -63,6 +63,23 @@ Execute(Basic errors should be handled by cppcheck): \ ' ^', \ ]) + AssertEqual + \ [ + \ { + \ 'lnum': 1, + \ 'col' : 16, + \ 'type': 'W', + \ 'sub_type': 'style', + \ 'text': 'misra violation (use --rule-texts=<file> to get proper output)', + \ 'code': 'misra-c2012-2.7' + \ }, + \ ], + \ ale#handlers#cppcheck#HandleCppCheckFormat(bufnr(''), [ + \ 'test.cpp:1:16: style: misra violation (use --rule-texts=<file> to get proper output) [misra-c2012-2.7]\', + \ 'void test( int parm ) {}', + \ ' ^', + \ ]) + Execute(Problems from other files should be ignored by cppcheck): call ale#test#SetFilename('test.cpp') |