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 | 32 from twisterlib.error import TwisterRuntimeError 145 raise TwisterRuntimeError(f"File {config_file} not found.") 187 raise TwisterRuntimeError("Tests not found") 197 raise TwisterRuntimeError("No testsuites found at the specified location...") 199 raise TwisterRuntimeError( 216 raise TwisterRuntimeError("No quarantine list given to be verified") 271 raise TwisterRuntimeError("Bad subset value.") from err 274 raise TwisterRuntimeError("subset should not exceed the total number of sets") 279 raise TwisterRuntimeError( 371 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 1196 raise TwisterRuntimeError(f"E: {result['returnmsg']}")
|
/Zephyr-latest/scripts/tests/twister/ |
D | test_testplan.py | 25 from twisterlib.error import TwisterRuntimeError 472 with pytest.raises(TwisterRuntimeError) if not config_yaml else nullcontext(): 524 with pytest.raises(TwisterRuntimeError) if expect_error else nullcontext(): 535 (0, 0, [], False, [], TwisterRuntimeError, []), 536 (1, 1, [], False, [], TwisterRuntimeError, []), 537 (1, 0, [], True, [], TwisterRuntimeError, ['No quarantine list given to be verified']), 591 TwisterRuntimeError, [], []), 593 TwisterRuntimeError, set(['t-p3', 't-p4', 't-p1', 't-p2']), []), 595 TwisterRuntimeError, set(['lt-p1', 'lt-p3', 'lt-p4', 'lt-p2']), []), 924 TwisterRuntimeError,
|
D | test_testsuite.py | 31 from twisterlib.error import TwisterException, TwisterRuntimeError 581 TwisterRuntimeError( 603 TwisterRuntimeError('src_dir_file: dummy warning'),
|