aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/distrib/run_clang_tidy.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/distrib/run_clang_tidy.py')
-rwxr-xr-xtools/distrib/run_clang_tidy.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/tools/distrib/run_clang_tidy.py b/tools/distrib/run_clang_tidy.py
index 72d7956b68..337e6b43c8 100755
--- a/tools/distrib/run_clang_tidy.py
+++ b/tools/distrib/run_clang_tidy.py
@@ -26,6 +26,8 @@ import jobset
GRPC_CHECKS = [
'modernize-use-nullptr',
+ 'google-build-namespaces',
+ 'google-build-explicit-make-pair',
]
extra_args = [
@@ -69,4 +71,5 @@ for filename in args.files:
shortname=filename,
)) #verbose_success=True))
-jobset.run(jobs, maxjobs=args.jobs)
+num_fails, res_set = jobset.run(jobs, maxjobs=args.jobs)
+sys.exit(num_fails)