Home
last modified time | relevance | path

Searched refs:exitcode (Results 1 – 25 of 49) sorted by relevance

12

/openbmc/qemu/tests/tcg/multiarch/gdbstub/
H A Dfollow-fork-mode-parent.py12 exitcode = int(gdb.parse_and_eval("$_exitcode"))
13 report(exitcode == 0, "{} == 0".format(exitcode))
H A Dlate-attach.py24 exitcode = int(gdb.parse_and_eval("$_exitcode"))
25 report(exitcode == 0, "{} == 0".format(exitcode))
H A Dfollow-fork-mode-child.py36 exitcode = int(gdb.parse_and_eval("$_exitcode"))
37 report(exitcode == 42, "{} == 42".format(exitcode))
H A Dprot-none.py32 exitcode = int(gdb.parse_and_eval("$_exitcode"))
33 report(exitcode == 0, "{} == 0".format(exitcode))
H A Dcatch-syscalls.py49 exitcode = int(gdb.parse_and_eval("$_exitcode"))
50 report(exitcode == 0, "{} == 0".format(exitcode))
/openbmc/openbmc/poky/meta/recipes-core/ifupdown/files/
H A Dtweak-ptest-script.patch30 exitcode=0
33 >$dir/up-res-out.$test 2>$dir/up-res-err.$test || exitcode=$?
35 (echo "exit code: $exitcode";
39 exitcode=0
42 >$dir/down-res-out.$test 2>$dir/down-res-err.$test || exitcode=$?
44 (echo "exit code: $exitcode";
/openbmc/openbmc/poky/meta/recipes-kernel/lttng/babeltrace2/
H A Drun-ptest11 exitcode=$?
19 exit $exitcode
/openbmc/qemu/tests/functional/
H A Dtest_mem_addr_space.py
H A Dtest_empty_cpu_model.py
H A Dtest_linux_initrd.py
/openbmc/qemu/python/qemu/machine/
H A Dmachine.py76 def __init__(self, exitcode: Optional[int],
78 super().__init__(exitcode, command, output)
79 self.exitcode = exitcode
94 if self.exitcode is not None:
273 def exitcode(self) -> Optional[int]: member in QEMUMachine
424 exitcode = self.exitcode()
425 if (exitcode is not None and exitcode < 0
426 and not (self._user_killed and exitcode == -signal.SIGKILL)):
432 LOG.warning(msg, -int(exitcode), command)
462 exitcode=self.exitcode(),
/openbmc/qemu/scripts/simplebench/
H A Dbench_write_req.py45 exitcode = subp.wait()
46 if exitcode < 0:
48 % (-exitcode, ' '.join(list(args))))
/openbmc/openbmc/poky/meta/recipes-kernel/lttng/lttng-tools/
H A Drun-ptest35 exitcode=$?
45 exit $exitcode
/openbmc/openbmc/poky/meta/lib/oeqa/core/
H A Dcase.py77 def ptest_section(self, section, duration = None, log = None, logfile = None, exitcode = None): argument
93 if exitcode is not None:
94 sections[section]["exitcode"] = exitcode
/openbmc/openbmc/poky/bitbake/lib/bb/
H A Dprocess.py42 def __init__(self, command, exitcode, stdout = None, stderr = None): argument
44 self.exitcode = exitcode
58 " with exit code %s" % self.exitcode + message + (self.extra_message or ""))
/openbmc/openbmc/poky/meta/lib/oeqa/utils/
H A Dlogparser.py139 exitcode = int(values["stat"])
140 if values["exit"] == "exited" and exitcode == LtpExitCode.TCONF:
143 elif exitcode == LtpExitCode.TPASS:
/openbmc/openbmc/poky/meta/lib/patchtest/tests/
H A Dbase.py33 def __init__(self, message, exitcode=1): argument
35 self.exitcode = exitcode
/openbmc/openbmc/poky/scripts/lib/devtool/
H A Dpackage.py36 return e.exitcode
H A Drunqemu.py51 return e.exitcode
H A D__init__.py22 def __init__(self, message, exitcode=1): argument
24 self.exitcode = exitcode
H A Dbuild.py77 return e.exitcode
/openbmc/qemu/tests/unit/
H A Dtest-qga.c836 int64_t pid, exitcode; in test_qga_guest_exec() local
854 exitcode = qdict_get_int(val, "exitcode"); in test_qga_guest_exec()
855 g_assert_cmpint(exitcode, ==, 0); in test_qga_guest_exec()
897 int64_t pid, exitcode; in test_qga_guest_exec_separated() local
915 exitcode = qdict_get_int(val, "exitcode"); in test_qga_guest_exec_separated()
916 g_assert_cmpint(exitcode, ==, 0); in test_qga_guest_exec_separated()
938 int64_t pid, exitcode; in test_qga_guest_exec_merged() local
956 exitcode = qdict_get_int(val, "exitcode"); in test_qga_guest_exec_merged()
957 g_assert_cmpint(exitcode, ==, 0); in test_qga_guest_exec_merged()
/openbmc/openbmc/poky/scripts/contrib/
H A Ddevtool-stress.py119 if exc.exitcode == 4:
166 if exc.exitcode == 4:
/openbmc/openbmc/meta-security/dynamic-layers/meta-perl/recipes-security/bastille/files/
H A DAPI.pm2018 my $exitcode=$@;
2026 if ($exitcode) { # The eval command above will exit with one of the 3 values below
2027 if ($exitcode =~ /timeout/) {
2031 } elsif ($exitcode =~ /success/) {
2033 } elsif ($exitcode =~ /failure/) {
/openbmc/openbmc/poky/meta/recipes-support/nettle/nettle/
H A DAdd-target-to-only-build-tests-not-run-them.patch43 …VALGRIND = valgrind --error-exitcode=1 --leak-check=full --show-reachable=yes @IF_ASM@ --partial-l…

12