Lines Matching +full:- +full:vv
4 # SPDX-License-Identifier: Apache-2.0
17 # pylint: disable=no-name-in-module
26 (['-ll', 'DEBUG']),
27 (['-v']),
28 (['-v', '-ll', 'DEBUG']),
29 (['-vv']),
30 (['-vv', '-ll', 'DEBUG']),
47 ('--no-detailed-test-id', False),
48 ('--detailed-test-id', True)
50 ids=['no-detailed-test-id', 'detailed-test-id']
55 args = ['-i', '--outdir', out_path, '-T', path, '-y'] + \
58 ['-p'] * len(test_platforms), test_platforms
88 args = ['--outdir', out_path, '-T', path] + \
90 ['-p'] * len(test_platforms), test_platforms
106 args = ['--outdir', out_path, '-T', path] + \
107 ['--inline-logs'] + \
109 ['-p'] * len(test_platforms), test_platforms
126 r'^\[[0-9]+/[0-9]+\] ',
128 r'-DTC_RUNID=[0-9a-zA-Z]+',
130 r'-I[0-9a-zA-Z/\\]+',
131 # Remove duration-sensitive entries
132 r'-- Configuring done \([0-9.]+s\)',
133 r'-- Generating done \([0-9.]+s\)',
135 r'^.*-- Cache files will be written to:.*$'
165 ids=['not verbose', 'not verbose + debug', 'v', 'v + debug', 'vv', 'vv + debug']
169 args = ['--outdir', out_path, '-T', test_path, *flags]
183 if '-ll' in flags and 'DEBUG' in flags:
189 if '-vv' in flags:
194 # Brief summary shows up only on verbosity 0 - instance-by-instance otherwise
195 … regex_info_line = [r'INFO', r'-', r'\d+/\d+', r'\S+', r'\S+', r'[A-Z]+', r'\(\w+', r'[\d.]+s\)']
197 if not any(f in flags for f in ['-v', '-vv']):