Searched refs:TwisterRuntimeError (Results 1 – 9 of 9) sorted by relevance
/Zephyr-latest/scripts/tests/twister_blackbox/ |
D | test_error.py | 19 from twisterlib.error import TwisterRuntimeError 34 TwisterRuntimeError
|
D | test_testplan.py | 19 from twisterlib.error import TwisterRuntimeError 29 TwisterRuntimeError,
|
/Zephyr-latest/scripts/pylib/twister/twisterlib/ |
D | error.py | 16 class TwisterRuntimeError(TwisterException): class
|
D | size_calc.py | 13 from twisterlib.error import TwisterRuntimeError 199 raise TwisterRuntimeError(f"{self.elf_filename} is not an ELF binary") 215 raise TwisterRuntimeError(f"{self.elf_filename} has no symbol information")
|
D | testplan.py | 33 from twisterlib.error import TwisterRuntimeError 146 raise TwisterRuntimeError(f"File {config_file} not found.") 188 raise TwisterRuntimeError("Tests not found") 198 raise TwisterRuntimeError("No testsuites found at the specified location...") 200 raise TwisterRuntimeError( 217 raise TwisterRuntimeError("No quarantine list given to be verified") 272 raise TwisterRuntimeError("Bad subset value.") from err 275 raise TwisterRuntimeError("subset should not exceed the total number of sets") 280 raise TwisterRuntimeError( 372 raise TwisterRuntimeError(msg) [all …]
|
D | testsuite.py | 16 from twisterlib.error import StatusAttributeError, TwisterException, TwisterRuntimeError 321 raise TwisterRuntimeError(f"{filename}: {result.warnings}") 360 raise TwisterRuntimeError(warning)
|
D | environment.py | 26 from twisterlib.error import TwisterRuntimeError 1151 raise TwisterRuntimeError(f"E: {result['returnmsg']}")
|
/Zephyr-latest/scripts/tests/twister/ |
D | test_testplan.py | 25 from twisterlib.error import TwisterRuntimeError 473 with pytest.raises(TwisterRuntimeError) if not config_yaml else nullcontext(): 525 with pytest.raises(TwisterRuntimeError) if expect_error else nullcontext(): 536 (0, 0, [], False, [], TwisterRuntimeError, []), 537 (1, 1, [], False, [], TwisterRuntimeError, []), 538 (1, 0, [], True, [], TwisterRuntimeError, ['No quarantine list given to be verified']), 592 TwisterRuntimeError, [], []), 594 TwisterRuntimeError, set(['t-p3', 't-p4', 't-p1', 't-p2']), []), 596 TwisterRuntimeError, set(['lt-p1', 'lt-p3', 'lt-p4', 'lt-p2']), []), 913 TwisterRuntimeError,
|
D | test_testsuite.py | 31 from twisterlib.error import TwisterException, TwisterRuntimeError 581 TwisterRuntimeError( 603 TwisterRuntimeError('src_dir_file: dummy warning'),
|