Lines Matching +full:dummy +full:- +full:line
4 # SPDX-License-Identifier: Apache-2.0
6 Blackbox tests for twister's command line functions changing test output.
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']
54 path = os.path.join(TEST_DATA, 'tests', 'dummy')
55 args = ['-i', '--outdir', out_path, '-T', path, '-y'] + \
58 ['-p'] * len(test_platforms), test_platforms
75 assert len(filtered_j) > 0, "No dummy tests found."
77 expected_start = os.path.relpath(TEST_DATA, ZEPHYR_BASE) if expect_paths else 'dummy.'
87 path = os.path.join(TEST_DATA, 'tests', 'always_build_error', 'dummy')
88 args = ['--outdir', out_path, '-T', path] + \
90 ['-p'] * len(test_platforms), test_platforms
100 … build_path = os.path.join(out_path, 'qemu_x86_atom', rel_path, 'always_fail.dummy', 'build.log')
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:.*$'
148 for line in err.split('\n'):
149 columns = line.split()
168 test_path = os.path.join(TEST_DATA, 'tests', 'dummy', 'agnostic')
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']):