-
Notifications
You must be signed in to change notification settings - Fork 385
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Removing on-the-fly CTU functionality as it is not supported by clang #1552
Conversation
tests/functional/ctu/test_ctu.py
Outdated
'--analyzers', 'clangsa', '--ctu-all'] | ||
if reparse: | ||
cmd.append('--ctu-on-the-fly') | ||
'--analyzers', 'clangsa', '--ctu-all','--verbose','debug'] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Space is required after ,
. Please fix other Codacy warnings too.
tests/functional/ctu/test_ctu.py
Outdated
'--analyzers', 'clangsa', '--ctu-analyze'] | ||
if reparse: | ||
cmd.append('--ctu-on-the-fly') | ||
'--analyzers', 'clangsa', '--ctu-analyze','--verbose','debug'] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Space is required after ,
@@ -20,8 +20,7 @@ class ClangSAConfigHandler(config_handler.AnalyzerConfigHandler): | |||
def __init__(self): | |||
super(ClangSAConfigHandler, self).__init__() | |||
self.__checker_configs = [] | |||
self.__ctu_dir = '' | |||
self.__ctu_in_memory = False | |||
self.__ctu_dir = '' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove trailing white spaces.
21cad06
to
1c38743
Compare
clang6 does not support this feature yet, if it will be introduced in clang6 or later we should review if we want to re implement is as it was. |
No description provided.