Skip to content
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

[analyzer] Print info message about logger tool #3573

Merged
merged 1 commit into from
Jan 21, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions analyzer/codechecker_analyzer/buildlog/build_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def perform_build_command(logfile, command, context, keep_link, silent=False,
"""
Build the project and create a log file.
"""
LOG.info("Starting build ...")
LOG.info("Starting build...")

original_env = os.environ
try:
Expand All @@ -77,7 +77,7 @@ def perform_build_command(logfile, command, context, keep_link, silent=False,

# Run user's commands with intercept.
if host_check.check_intercept(original_env):
LOG.debug_analyzer("with intercept ...")
LOG.info("Using intercept-build.")
final_command = command
command = ' '.join(["intercept-build",
"--cdb", logfile,
Expand All @@ -89,7 +89,7 @@ def perform_build_command(logfile, command, context, keep_link, silent=False,
else:
# TODO: better platform detection.
if platform.system() == 'Linux':
LOG.debug_analyzer("with ld logger ...")
LOG.info("Using CodeChecker ld-logger.")
# Same as linux's touch.
open(logfile, 'a', encoding="utf-8", errors="ignore").close()
log_env = env.get_log_env(logfile, context, original_env)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ NORMAL#CodeChecker log --output $LOGFILE$ --build "make compiler_error" --quiet
NORMAL#CodeChecker analyze $LOGFILE$ --output $OUTPUT$ --analyzers clang-tidy --quiet
NORMAL#CodeChecker parse $OUTPUT$
--------------------------------------------------------------------------------
[] - Starting build ...
[] - Starting build...
[] - Using CodeChecker ld-logger.
[] - Build failed.
[] - Starting static analysis ...
[] - Analyzing compiler_error.cpp with clang-tidy failed!
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ NORMAL#CodeChecker log --output $LOGFILE$ --build "make compiler_error" --quiet
NORMAL#CodeChecker analyze $LOGFILE$ --output $OUTPUT$ --analyzers clang-tidy --quiet --disable clang-diagnostic-error
NORMAL#CodeChecker parse $OUTPUT$
--------------------------------------------------------------------------------
[] - Starting build ...
[] - Starting build...
[] - Using CodeChecker ld-logger.
[] - Build failed.
[] - Starting static analysis ...
[] - Analyzing compiler_error.cpp with clang-tidy failed!
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ NORMAL#CodeChecker analyze $LOGFILE$ --output $OUTPUT$ --analyzers clang-tidy
NORMAL#CodeChecker parse $OUTPUT$
CHECK#CodeChecker check --build "make compiler_warning_simple" --output $OUTPUT$ --quiet --analyzers clang-tidy
--------------------------------------------------------------------------------
[] - Starting build ...
[] - Starting build...
[] - Using CodeChecker ld-logger.
[] - Build finished successfully.
[] - Starting static analysis ...
[] - [1/1] clang-tidy analyzed compiler_warning.cpp successfully.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ NORMAL#CodeChecker analyze $LOGFILE$ --output $OUTPUT$ --analyzers clang-tidy -e
NORMAL#CodeChecker parse $OUTPUT$
CHECK#CodeChecker check --build "make compiler_warning_simple" --output $OUTPUT$ --quiet --analyzers clang-tidy -e Wunused-variable
--------------------------------------------------------------------------------
[] - Starting build ...
[] - Starting build...
[] - Using CodeChecker ld-logger.
[] - Build finished successfully.
[] - Starting static analysis ...
[] - [1/1] clang-tidy analyzed compiler_warning.cpp successfully.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ NORMAL#CodeChecker analyze $LOGFILE$ --output $OUTPUT$ --analyzers clang-tidy -e
NORMAL#CodeChecker parse $OUTPUT$
CHECK#CodeChecker check --build "make compiler_warning_wno_group" --output $OUTPUT$ --quiet --analyzers clang-tidy -e Wunused
--------------------------------------------------------------------------------
[] - Starting build ...
[] - Starting build...
[] - Using CodeChecker ld-logger.
[] - Build finished successfully.
[] - Starting static analysis ...
[] - [1/1] clang-tidy analyzed compiler_warning.cpp successfully.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ NORMAL#CodeChecker analyze $LOGFILE$ --output $OUTPUT$ --analyzers clang-tidy -e
NORMAL#CodeChecker parse $OUTPUT$
CHECK#CodeChecker check --build "make compiler_warning_wno_simple" --output $OUTPUT$ --quiet --analyzers clang-tidy -e Wunused-variable
--------------------------------------------------------------------------------
[] - Starting build ...
[] - Starting build...
[] - Using CodeChecker ld-logger.
[] - Build finished successfully.
[] - Starting static analysis ...
[] - [1/1] clang-tidy analyzed compiler_warning.cpp successfully.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ NORMAL#CodeChecker analyze $LOGFILE$ --output $OUTPUT$ --analyzers clang-tidy -d
NORMAL#CodeChecker parse $OUTPUT$
CHECK#CodeChecker check --build "make compiler_warning_unused" --output $OUTPUT$ --quiet --analyzers clang-tidy -d Wno-unused
--------------------------------------------------------------------------------
[] - Starting build ...
[] - Starting build...
[] - Using CodeChecker ld-logger.
[] - Build finished successfully.
[] - Starting static analysis ...
[] - [1/1] clang-tidy analyzed compiler_warning.cpp successfully.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ NORMAL#CodeChecker analyze $LOGFILE$ --output $OUTPUT$ --analyzers clang-tidy -d
NORMAL#CodeChecker parse $OUTPUT$
CHECK#CodeChecker check --build "make compiler_warning_unused" --output $OUTPUT$ --quiet --analyzers clang-tidy -d Wunused
--------------------------------------------------------------------------------
[] - Starting build ...
[] - Starting build...
[] - Using CodeChecker ld-logger.
[] - Build finished successfully.
[] - Starting static analysis ...
[] - [1/1] clang-tidy analyzed compiler_warning.cpp successfully.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ NORMAL#CodeChecker analyze $LOGFILE$ --output $OUTPUT$ --report-hash=context-fre
NORMAL#CodeChecker parse $OUTPUT$ --print-steps
CHECK#CodeChecker check --build "make context_hash" --output $OUTPUT$ --quiet --print-steps --report-hash=context-free --analyzers clang-tidy
--------------------------------------------------------------------------------
[] - Starting build ...
[] - Starting build...
[] - Using CodeChecker ld-logger.
[] - Build finished successfully.
[] - Starting static analysis ...
[] - [1/1] clang-tidy analyzed context_hash.cpp successfully.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ NORMAL#CodeChecker analyze $LOGFILE$ --output $OUTPUT$ --report-hash=context-fre
NORMAL#CodeChecker parse $OUTPUT$ --print-steps
CHECK#CodeChecker check --build "make context_hash" --output $OUTPUT$ --quiet --print-steps --report-hash=context-free --analyzers clangsa
--------------------------------------------------------------------------------
[] - Starting build ...
[] - Starting build...
[] - Using CodeChecker ld-logger.
[] - Build finished successfully.
[] - Starting static analysis ...
[] - [1/1] clangsa analyzed context_hash.cpp successfully.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ NORMAL#CodeChecker analyze $LOGFILE$ --output $OUTPUT$ --report-hash=context-fre
NORMAL#CodeChecker parse $OUTPUT$ --print-steps
CHECK#CodeChecker check --build "make context_hash" --output $OUTPUT$ --quiet --print-steps --report-hash=context-free-v2 --analyzers clang-tidy
--------------------------------------------------------------------------------
[] - Starting build ...
[] - Starting build...
[] - Using CodeChecker ld-logger.
[] - Build finished successfully.
[] - Starting static analysis ...
[] - [1/1] clang-tidy analyzed context_hash.cpp successfully.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ NORMAL#CodeChecker analyze $LOGFILE$ --output $OUTPUT$ --report-hash=context-fre
NORMAL#CodeChecker parse $OUTPUT$ --print-steps
CHECK#CodeChecker check --build "make context_hash" --output $OUTPUT$ --quiet --print-steps --report-hash=context-free-v2 --analyzers clangsa
--------------------------------------------------------------------------------
[] - Starting build ...
[] - Starting build...
[] - Using CodeChecker ld-logger.
[] - Build finished successfully.
[] - Starting static analysis ...
[] - [1/1] clangsa analyzed context_hash.cpp successfully.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ NORMAL#CodeChecker analyze $LOGFILE$ --output $OUTPUT$ --analyzers clangsa
NORMAL#CodeChecker parse $OUTPUT$ --print-steps
CHECK#CodeChecker check --build "make context_hash" --output $OUTPUT$ --quiet --print-steps --analyzers clangsa
--------------------------------------------------------------------------------
[] - Starting build ...
[] - Starting build...
[] - Using CodeChecker ld-logger.
[] - Build finished successfully.
[] - Starting static analysis ...
[] - [1/1] clangsa analyzed context_hash.cpp successfully.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ NORMAL#CodeChecker analyze $LOGFILE$ --output $OUTPUT$ --analyzers clang-tidy
NORMAL#CodeChecker parse $OUTPUT$ --print-steps
CHECK#CodeChecker check --build "make context_hash" --output $OUTPUT$ --quiet --print-steps --analyzers clang-tidy
--------------------------------------------------------------------------------
[] - Starting build ...
[] - Starting build...
[] - Using CodeChecker ld-logger.
[] - Build finished successfully.
[] - Starting static analysis ...
[] - [1/1] clang-tidy analyzed context_hash.cpp successfully.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ NORMAL#CodeChecker analyze $LOGFILE$ --output $OUTPUT$ --report-hash=diagnostic-
NORMAL#CodeChecker parse $OUTPUT$ --print-steps
CHECK#CodeChecker check --build "make context_hash" --output $OUTPUT$ --quiet --print-steps --report-hash=diagnostic-message --analyzers clang-tidy
--------------------------------------------------------------------------------
[] - Starting build ...
[] - Starting build...
[] - Using CodeChecker ld-logger.
[] - Build finished successfully.
[] - Starting static analysis ...
[] - [1/1] clang-tidy analyzed context_hash.cpp successfully.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ NORMAL#CodeChecker analyze $LOGFILE$ --output $OUTPUT$ --report-hash=diagnostic-
NORMAL#CodeChecker parse $OUTPUT$ --print-steps
CHECK#CodeChecker check --build "make context_hash" --output $OUTPUT$ --quiet --print-steps --report-hash=diagnostic-message --analyzers clangsa
--------------------------------------------------------------------------------
[] - Starting build ...
[] - Starting build...
[] - Using CodeChecker ld-logger.
[] - Build finished successfully.
[] - Starting static analysis ...
[] - [1/1] clangsa analyzed context_hash.cpp successfully.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
[] - Starting build ...
[] - Starting build...
[] - Using CodeChecker ld-logger.
[] - Build finished successfully.
[] - Starting static analysis ...
[] - [1/3] clangsa analyzed f.cpp successfully.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ NORMAL#CodeChecker analyze $LOGFILE$ --output $OUTPUT$ --analyzers clangsa --ena
NORMAL#CodeChecker parse $OUTPUT$
CHECK#CodeChecker check --build "make multi_error" --output $OUTPUT$ --quiet --analyzers clangsa --enable core.DivideZero --disable deadcode.DeadStores
-----------------------------------------------
[] - Starting build ...
[] - Starting build...
[] - Using CodeChecker ld-logger.
[] - Build finished successfully.
[] - Starting static analysis ...
[] - [1/1] clangsa analyzed multi_error.cpp successfully.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ NORMAL#CodeChecker analyze $LOGFILE$ --output $OUTPUT$ --analyzers clangsa --dis
NORMAL#CodeChecker parse $OUTPUT$
CHECK#CodeChecker check --build "make multi_error" --output $OUTPUT$ --quiet --analyzers clangsa --disable core.DivideZero -d core.UndefinedBinaryOperatorResult -d core.uninitialized.UndefReturn -d core.uninitialized.Assign --enable deadcode.DeadStores
-----------------------------------------------
[] - Starting build ...
[] - Starting build...
[] - Using CodeChecker ld-logger.
[] - Build finished successfully.
[] - Starting static analysis ...
[] - [1/1] clangsa analyzed multi_error.cpp successfully.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ NORMAL#CodeChecker analyze $LOGFILE$ --output $OUTPUT$ --analyzers clangsa --dis
NORMAL#CodeChecker parse $OUTPUT$
CHECK#CodeChecker check --build "make multi_error" --output $OUTPUT$ --quiet --analyzers clangsa --disable severity:HIGH -d core.uninitialized.Assign --enable deadcode.DeadStores
-----------------------------------------------
[] - Starting build ...
[] - Starting build...
[] - Using CodeChecker ld-logger.
[] - Build finished successfully.
[] - Starting static analysis ...
[] - [1/1] clangsa analyzed multi_error.cpp successfully.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ NORMAL#CodeChecker analyze $LOGFILE$ --output $OUTPUT$ --analyzers clangsa
NORMAL#CodeChecker parse $OUTPUT$
CHECK#CodeChecker check --build "make multi_error" --output $OUTPUT$ --quiet --analyzers clangsa
-----------------------------------------------
[] - Starting build ...
[] - Starting build...
[] - Using CodeChecker ld-logger.
[] - Build finished successfully.
[] - Starting static analysis ...
[] - [1/1] clangsa analyzed multi_error.cpp successfully.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ NORMAL#CodeChecker analyze $LOGFILE$ --output $OUTPUT$ --analyzers clangsa
NORMAL#CodeChecker parse $OUTPUT$ --print-steps
CHECK#CodeChecker check --build "make multi_error" --output $OUTPUT$ --quiet --analyzers clangsa --print-steps
-------------------------------------------------------
[] - Starting build ...
[] - Starting build...
[] - Using CodeChecker ld-logger.
[] - Build finished successfully.
[] - Starting static analysis ...
[] - [1/1] clangsa analyzed multi_error.cpp successfully.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ NORMAL#CodeChecker analyze $LOGFILE$ --output $OUTPUT$ --analyzers clangsa --ski
NORMAL#CodeChecker parse --skip skiplist.txt $OUTPUT$
CHECK#CodeChecker check --build "make multi_error simple1" --output $OUTPUT$ --quiet --analyzers clangsa --skip skiplist.txt
-----------------------------------------------
[] - Starting build ...
[] - Starting build...
[] - Using CodeChecker ld-logger.
[] - Build finished successfully.
[] - Starting static analysis ...
[] - [1/1] clangsa analyzed simple1.cpp successfully.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ NORMAL#CodeChecker analyze $LOGFILE$ --output $OUTPUT$ --analyzers clang-tidy --
NORMAL#CodeChecker parse $OUTPUT$
CHECK#CodeChecker check --build "make tidy_check multi_error_skipped_in_cmd" --output $OUTPUT$ --analyzers clang-tidy --quiet --file "*/multi_error_skipped_in_cmd.cpp" -d clang-diagnostic-unused-value -d misc-definitions-in-headers
-----------------------------------------------
[] - Starting build ...
[] - Starting build...
[] - Using CodeChecker ld-logger.
[] - Build finished successfully.
[] - Starting static analysis ...
[] - [1/1] clang-tidy analyzed multi_error_skipped_in_cmd.cpp successfully.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ NORMAL#CodeChecker analyze $LOGFILE$ --output $OUTPUT$ --analyzers clangsa
NORMAL#CodeChecker parse $OUTPUT$
CHECK#CodeChecker check --build "make multi_error_suppress" --output $OUTPUT$ --quiet --analyzers clangsa
-----------------------------------------------
[] - Starting build ...
[] - Starting build...
[] - Using CodeChecker ld-logger.
[] - Build finished successfully.
[] - Starting static analysis ...
[] - [1/1] clangsa analyzed multi_error_suppress.cpp successfully.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ NORMAL#CodeChecker analyze $LOGFILE$ --output $OUTPUT$ --analyzers clangsa
NORMAL#CodeChecker parse $OUTPUT$
CHECK#CodeChecker check --build "make multi_error_suppress_cstyle" --output $OUTPUT$ --quiet --analyzers clangsa
-----------------------------------------------
[] - Starting build ...
[] - Starting build...
[] - Using CodeChecker ld-logger.
[] - Build finished successfully.
[] - Starting static analysis ...
[] - [1/1] clangsa analyzed multi_error_suppress_cstyle.cpp successfully.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ NORMAL#CodeChecker analyze $LOGFILE$ --output $OUTPUT$ --analyzers clangsa
NORMAL#CodeChecker parse $OUTPUT$
CHECK#CodeChecker check --build "make multi_error_suppress_typo" --output $OUTPUT$ --quiet --analyzers clangsa
-----------------------------------------------
[] - Starting build ...
[] - Starting build...
[] - Using CodeChecker ld-logger.
[] - Build finished successfully.
[] - Starting static analysis ...
[] - [1/1] clangsa analyzed multi_error_suppress_typo.cpp successfully.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ NORMAL#CodeChecker analyze $LOGFILE$ --output $OUTPUT$ --analyzers clangsa
NORMAL#CodeChecker parse $OUTPUT$
CHECK#CodeChecker check --build "make nofail" --output $OUTPUT$ --quiet --analyzers clangsa
--------------------------------------------------------------------------------
[] - Starting build ...
[] - Starting build...
[] - Using CodeChecker ld-logger.
[] - Build finished successfully.
[] - Starting static analysis ...
[] - [1/1] clangsa analyzed nofail.cpp successfully.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ NORMAL#CodeChecker analyze $LOGFILE$ --output $OUTPUT$ --analyzers clangsa
NORMAL#CodeChecker parse $OUTPUT$ --print-steps
CHECK#CodeChecker check --build "make nofail" --output $OUTPUT$ --quiet --analyzers clangsa --print-steps
--------------------------------------------------------------------------------
[] - Starting build ...
[] - Starting build...
[] - Using CodeChecker ld-logger.
[] - Build finished successfully.
[] - Starting static analysis ...
[] - [1/1] clangsa analyzed nofail.cpp successfully.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ NORMAL#CodeChecker analyze $LOGFILE$ --output $OUTPUT$ --analyzers clangsa
NORMAL#CodeChecker parse $OUTPUT$
CHECK#CodeChecker check --build "make saargs_forward" --output $OUTPUT$ --quiet --analyzers clangsa
-----------------------------------------------
[] - Starting build ...
[] - Starting build...
[] - Using CodeChecker ld-logger.
[] - Build finished successfully.
[] - Starting static analysis ...
[] - [1/1] clangsa analyzed saargs_forward.cpp successfully.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ NORMAL#CodeChecker analyze $LOGFILE$ --output $OUTPUT$ --analyzers clangsa --saa
NORMAL#CodeChecker parse $OUTPUT$
CHECK#CodeChecker check --build "make saargs_forward" --output $OUTPUT$ --quiet --analyzers clangsa --saargs "saargs_forward.saargs.txt"
-----------------------------------------------
[] - Starting build ...
[] - Starting build...
[] - Using CodeChecker ld-logger.
[] - Build finished successfully.
[] - Starting static analysis ...
[] - [1/1] clangsa analyzed saargs_forward.cpp successfully.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ NORMAL#CodeChecker analyze $LOGFILE$ --output $OUTPUT$ --analyzers clangsa
NORMAL#CodeChecker parse $OUTPUT$
CHECK#CodeChecker check --build "make deduplication" --output $OUTPUT$ --quiet --analyzers clangsa
--------------------------------------------------------------------------------
[] - Starting build ...
[] - Starting build...
[] - Using CodeChecker ld-logger.
[] - Build finished successfully.
[] - Starting static analysis ...
[] - [1/2] clangsa analyzed simple1.cpp successfully.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ NORMAL#CodeChecker analyze $LOGFILE$ --output $OUTPUT$ --analyzers clangsa
NORMAL#CodeChecker parse $OUTPUT$
CHECK#CodeChecker check --build "make simple1" --output $OUTPUT$ --quiet --analyzers clangsa
--------------------------------------------------------------------------------
[] - Starting build ...
[] - Starting build...
[] - Using CodeChecker ld-logger.
[] - Build finished successfully.
[] - Starting static analysis ...
[] - [1/1] clangsa analyzed simple1.cpp successfully.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ NORMAL#CodeChecker analyze $LOGFILE$ --output $OUTPUT$ --analyzers clangsa
NORMAL#CodeChecker parse $OUTPUT$ --print-steps
CHECK#CodeChecker check --build "make simple1" --output $OUTPUT$ --quiet --analyzers clangsa --print-steps
--------------------------------------------------------------------------------
[] - Starting build ...
[] - Starting build...
[] - Using CodeChecker ld-logger.
[] - Build finished successfully.
[] - Starting static analysis ...
[] - [1/1] clangsa analyzed simple1.cpp successfully.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ NORMAL#CodeChecker analyze $LOGFILE$ --output $OUTPUT$ --analyzers clangsa
NORMAL#CodeChecker parse $OUTPUT$
CHECK#CodeChecker check --build "make simple2" --output $OUTPUT$ --quiet --analyzers clangsa
--------------------------------------------------------------------------------
[] - Starting build ...
[] - Starting build...
[] - Using CodeChecker ld-logger.
[] - Build finished successfully.
[] - Starting static analysis ...
[] - [1/1] clangsa analyzed simple2.cpp successfully.
Expand Down
Loading