Lines Matching +full:clang +full:- +full:tidy
112 '--negative_testing',
118 '--compiler',
124 '--mode',
130 '--std',
136 '--target',
143 general_arguments.add_argument('--dry-run', action='store_true',
147 general_arguments.add_argument('--verbose', action='store_true',
150 '--jobs', '-j', metavar='N', type=int, nargs='?',
155 general_arguments.add_argument('--clang-format',
157 help='Path to clang-format.')
158 general_arguments.add_argument('--clang-tidy',
160 help='Path to clang-tidy.')
161 general_arguments.add_argument('--nobench', action='store_true',
163 general_arguments.add_argument('--nolint', action='store_true',
165 general_arguments.add_argument('--noclang-format', action='store_true',
166 help='Do not run clang-format.')
167 general_arguments.add_argument('--noclang-tidy', action='store_true',
168 help='Do not run clang-tidy.')
169 general_arguments.add_argument('--notest', action='store_true',
171 general_arguments.add_argument('--nocheck-code-coverage', action='store_true',
173 general_arguments.add_argument('--fail-early', action='store_true',
176 '--under_valgrind', action='store_true',
177 help='''Run the test-runner commands under Valgrind.
215 # Mark the process output as non-blocking.
231 if (t_current - t_start >= 2) and (t_current - t_last_indication >= 1):
233 printable_command_orange + indicator % int(t_current - t_start))
251 printable_command += ' (took %d seconds)' % int(t_current - t_start)
270 progress_prefix = 'clang-format: ')
276 progress_prefix = 'clang-tidy: ')
283 scons_command = ['scons', '-C', dir_root, 'all', '-j', str(jobs)]
352 # {a : a0, b : b0} --> "a=a0 b=b0"
434 # can be copy-pasted and run.
436 join(config.dir_build_latest, 'test', 'test-runner'))