diff options
author | Brad King <brad.king@kitware.com> | 2017-12-05 13:14:30 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2017-12-05 13:14:39 (GMT) |
commit | 0236e5080229e5ce05c43077a56dc5b58fc644fd (patch) | |
tree | e897d7041fe96ec66e17a67545a2d3fac202cbd4 /Source | |
parent | 0b7822f49aef20ad758c637abe813463652cf9b0 (diff) | |
parent | bfcc20343c966ee031426e04c5eab504a0af8e27 (diff) | |
download | CMake-0236e5080229e5ce05c43077a56dc5b58fc644fd.zip CMake-0236e5080229e5ce05c43077a56dc5b58fc644fd.tar.gz CMake-0236e5080229e5ce05c43077a56dc5b58fc644fd.tar.bz2 |
Merge topic 'update-cpplint'
bfcc2034 Update cpplint support to return 0 and mark warnings for CDash.
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !1544
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmcmd.cxx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Source/cmcmd.cxx b/Source/cmcmd.cxx index 3d9f65a..b78fbe6 100644 --- a/Source/cmcmd.cxx +++ b/Source/cmcmd.cxx @@ -270,10 +270,12 @@ static int HandleCppLint(const std::string& runCmd, << "\n"; return 1; } - + std::cerr << "Warning: cpplint diagnostics:\n"; // Output the output from cpplint to stderr std::cerr << stdOut; - return ret; + // always return 0 so the build can continue as cpplint returns non-zero + // for any warning + return 0; } static int HandleCppCheck(const std::string& runCmd, |