Lines Matching +full:clang +full:- +full:tidy
111 '--negative_testing',
117 '--compiler',
123 '--mode',
129 '--std',
135 '--target',
142 general_arguments.add_argument('--dry-run', action='store_true',
146 general_arguments.add_argument('--verbose', action='store_true',
149 '--jobs', '-j', metavar='N', type=int, nargs='?',
154 general_arguments.add_argument('--clang-format',
156 help='Path to clang-format.')
157 general_arguments.add_argument('--clang-tidy',
159 help='Path to clang-tidy.')
160 general_arguments.add_argument('--nobench', action='store_true',
162 general_arguments.add_argument('--nolint', action='store_true',
164 general_arguments.add_argument('--noclang-format', action='store_true',
165 help='Do not run clang-format.')
166 general_arguments.add_argument('--noclang-tidy', action='store_true',
167 help='Do not run clang-tidy.')
168 general_arguments.add_argument('--notest', action='store_true',
170 general_arguments.add_argument('--nocheck-code-coverage', action='store_true',
172 general_arguments.add_argument('--fail-early', action='store_true',
175 '--under_valgrind', action='store_true',
176 help='''Run the test-runner commands under Valgrind.
214 # Mark the process output as non-blocking.
230 if (t_current - t_start >= 2) and (t_current - t_last_indication >= 1):
232 printable_command_orange + indicator % int(t_current - t_start))
250 printable_command += ' (took %d seconds)' % int(t_current - t_start)
268 progress_prefix = 'clang-format: ')
274 progress_prefix = 'clang-tidy: ')
281 scons_command = ['scons', '-C', dir_root, 'all', '-j', str(jobs)]
350 # {a : a0, b : b0} --> "a=a0 b=b0"
432 # can be copy-pasted and run.
434 join(config.dir_build_latest, 'test', 'test-runner'))