Lines Matching +full:twister +full:- +full:out
4 # SPDX-License-Identifier: Apache-2.0
6 Blackbox tests for twister's command line functions related to Twister's tooling.
8 # pylint: disable=duplicate-code
25 apath = os.path.join(ZEPHYR_BASE, 'scripts', 'twister')
43 args = ['-i', '--outdir', out_path, '-T', path] + \
44 ['--jobs', jobs] + \
46 ['-p'] * len(test_platforms), test_platforms
53 with open(os.path.join(out_path, 'twister.log')) as f:
64 args = ['-i', '--outdir', out_path, '-T', path, '-y'] + \
65 ['--force-toolchain'] + \
68 ['-p'] * len(test_platforms), test_platforms
103 ['--ninja', '-N']
107 args = ['--outdir', out_path, '-T', test_path, flag] + \
109 ['-p'] * len(test_platforms), test_platforms
116 out, err = capfd.readouterr()
117 sys.stdout.write(out)