Home
last modified time | relevance | path

Searched refs:exc (Results 1 – 16 of 16) sorted by relevance

/Zephyr-latest/scripts/pylib/pytest-twister-harness/src/twister_harness/device/
Dbinary_adapter.py49 except subprocess.SubprocessError as exc:
52 raise TwisterHarnessException(msg) from exc
53 except FileNotFoundError as exc:
56 raise TwisterHarnessException(msg) from exc
57 except Exception as exc:
60 raise TwisterHarnessException(msg) from exc
Dhardware_adapter.py118 except subprocess.TimeoutExpired as exc:
122 raise TwisterHarnessTimeoutException(msg) from exc
123 except subprocess.SubprocessError as exc:
126 raise TwisterHarnessTimeoutException(msg) from exc
153 except serial.SerialException as exc:
154 logger.exception('Cannot open connection: %s', exc)
169 except NameError as exc:
171 raise exc
180 except subprocess.CalledProcessError as exc:
181 … logger.exception('Failed to run subprocess %s, error %s', self.device_config.serial_pty, str(exc))
[all …]
Dfactory.py40 except KeyError as exc:
42 raise TwisterHarnessException(f'There is no device with name "{name}"') from exc
Ddevice_adapter.py257 except queue.Empty as exc:
258 … raise TwisterHarnessTimeoutException(f'Read from device timeout occurred ({timeout}s)') from exc
/Zephyr-latest/scripts/pylib/twister/twisterlib/
Dcmakecache.py64 except ValueError as exc:
65 raise ValueError(f'invalid bool {val}') from exc
86 except ValueError as exc:
87 args = exc.args + (f'on line {line_no}: {line}',)
88 raise ValueError(args) from exc
/Zephyr-latest/scripts/footprint/
Dtrack.py59 except subprocess.CalledProcessError as exc:
60 print("Status : FAIL", exc.returncode, exc.output)
Dupload_data.py15 from git.exc import BadName
Dpack_as_twister.py45 from git.exc import BadName
/Zephyr-latest/scripts/tests/twister_blackbox/
Dtest_testplan.py68 pytest.raises(expected_exception) as exc:
83 assert str(exc.value) == '0'
101 pytest.raises(SystemExit) as exc:
104 assert str(exc.value) == '0'
135 pytest.raises(SystemExit) as exc:
138 assert str(exc.value) == '0'
Dtest_error.py81 pytest.raises(expected_exception) as exc:
85 assert str(exc.value) == '0'
/Zephyr-latest/scripts/west_commands/
Dzcmake.py190 except ValueError as exc:
191 raise ValueError('invalid bool {}'.format(val)) from exc
212 except ValueError as exc:
213 args = exc.args + ('on line {}: {}'.format(line_no, line),)
214 raise ValueError(args) from exc
Dbuild.py328 except yaml.YAMLError as exc:
329 self.die(exc)
/Zephyr-latest/arch/arm/core/cortex_a_r/
DCMakeLists.txt6 exc.S
/Zephyr-latest/tests/net/lib/lwm2m/interop/pytest/
Dleshan.py33 except requests.exceptions.ConnectionError as exc:
34 raise RuntimeError('Leshan not responding') from exc
/Zephyr-latest/samples/boards/nordic/coresight_stm/pytest/
Dtest_stm.py207 except OSError as exc:
/Zephyr-latest/doc/releases/
Drelease-notes-2.3.rst1177 * :github:`23360` - Possible NULL dereference in zephyr/arch/arm/include/aarch32/cortex_m/exc.h