Searched refs:exited (Results 1 - 25 of 60) sorted by relevance

123

/freebsd-13-stable/contrib/kyua/utils/process/
H A Dstatus.hpp50 /// Note that the process has exited already and been awaited for, so the
54 /// The exit status of the process, if it exited cleanly.
69 bool exited(void) const;
H A Dstatus_test.cpp101 ATF_REQUIRE(fake.exited());
112 ATF_REQUIRE(!fake.exited());
153 ATF_REQUIRE(exit_success.exited());
158 ATF_REQUIRE(exit_failure.exited());
168 ATF_REQUIRE(!sigterm.exited());
174 ATF_REQUIRE(!sigkill.exited());
187 ATF_REQUIRE(!coredump.exited());
H A Dstatus.cpp119 /// Returns whether the process exited cleanly or not.
121 /// \return True if the process exited cleanly, false otherwise.
123 process::status::exited(void) const function in class:process::status
131 /// \pre The process must have exited cleanly (i.e. exited() must be true).
137 PRE(exited());
192 if (status.exited()) {
H A Disolation_test.cpp314 ATF_REQUIRE(status.exited());
351 ATF_REQUIRE(status.exited());
375 ATF_REQUIRE(status.exited());
401 ATF_REQUIRE(status.exited());
435 ATF_REQUIRE(status.exited());
446 ATF_REQUIRE(status.exited());
457 ATF_REQUIRE(status.exited());
466 ATF_REQUIRE(status.exited());
475 ATF_REQUIRE(status.exited());
484 ATF_REQUIRE(status.exited());
[all...]
H A Doperations_test.cpp168 ATF_REQUIRE(status.exited());
190 ATF_REQUIRE(status.exited());
390 ATF_REQUIRE(status.exited());
408 ATF_REQUIRE(status.exited());
423 ATF_REQUIRE(status.exited());
H A Ddeadline_killer_test.cpp99 ATF_REQUIRE(status.exited());
H A Dchild_test.cpp299 if (!status.exited() || status.exitstatus() != 123)
343 ATF_REQUIRE(status.exited());
389 ATF_REQUIRE(status.exited());
473 ATF_REQUIRE(status.exited());
496 ATF_REQUIRE(status.exited());
535 ATF_REQUIRE(status.exited());
657 ATF_REQUIRE(status.exited());
676 ATF_REQUIRE(status.exited());
694 ATF_REQUIRE(status.exited());
737 ATF_REQUIRE(status.exited());
[all...]
/freebsd-13-stable/contrib/googletest/googletest/test/
H A Dgoogletest-uninitialized-test.py56 if p.exited and p.exit_code == 0:
H A Dgtest_list_output_unittest.py117 self.assert_(p.exited)
H A Dgtest_test_utils.py220 exited True iff the child process exited normally.
221 exit_code The code with which the child process exited.
292 self.exited = False
296 self.exited = True
H A Dgoogletest-color-test.py64 return not p.exited or p.exit_code
H A Dgoogletest-throw-on-failure-test.py73 return p.exited and p.exit_code == 0
H A Dgtest_xml_outfiles_test.py111 self.assert_(p.exited)
H A Dgtest_xml_output_unittest.py276 self.assert_(p.exited)
301 self.assert_(p.exited)
303 "'%s' exited with code %s, which doesn't match "
354 self.assert_(p.exited)
356 "'%s' exited with code %s, which doesn't match "
/freebsd-13-stable/contrib/bmake/unit-tests/
H A Dvar-op-shell.exp3 make: "var-op-shell.mk" line 56: warning: "kill $$" exited on a signal
H A Dopt-debug-jobs.exp23 Process <pid> exited/stopped status 0.
/freebsd-13-stable/contrib/atf/atf-c++/
H A Dcheck.hpp83 //! \brief Returns whether the command exited correctly or not.
85 bool exited(void) const;
H A Dcheck.cpp57 impl::check_result::exited(void) function in class:impl::check_result
67 PRE(exited());
H A Dcheck_test.cpp277 ATF_REQUIRE(r->exited());
285 ATF_REQUIRE(r->exited());
293 ATF_REQUIRE(!r->exited());
326 ATF_REQUIRE(r1->exited());
331 ATF_REQUIRE(r2->exited());
376 ATF_REQUIRE(r->exited());
/freebsd-13-stable/sys/compat/linuxkpi/common/src/
H A Dlinux_kthread.c71 wait_for_completion(&task->exited);
164 complete(&task->exited);
/freebsd-13-stable/contrib/kyua/engine/
H A Dplain.cpp129 if (status.get().exited()) {
H A Datf_result.cpp227 if (status.exited())
228 return F("exited with code %s") % status.exitstatus();
438 if (status.get().exited()) {
455 if (status.get().exited() && status.get().exitstatus() == EXIT_SUCCESS)
484 if (status.get().exited() && status.get().exitstatus() == EXIT_FAILURE)
492 if (status.get().exited() && status.get().exitstatus() == EXIT_SUCCESS)
500 if (status.get().exited() && status.get().exitstatus() == EXIT_SUCCESS)
/freebsd-13-stable/contrib/kyua/utils/signals/
H A Dmisc_test.cpp123 ATF_REQUIRE(status.exited());
/freebsd-13-stable/contrib/atf/atf-c++/detail/
H A Dtest_helpers.hpp111 ATF_REQUIRE(s.exited());
/freebsd-13-stable/contrib/llvm-project/lldb/source/Host/common/
H A DHost.cpp217 bool exited = false; local
227 exited = true;
232 exited = true;
253 if (exited || (signal != 0 && monitor_signals)) {
256 callback_return = callback(wait_pid, exited, signal, exit_status);
258 // If our process exited, then this thread should exit
259 if (exited && wait_pid == abs(pid)) {
456 bool exited, // True if the process did exit
464 // exited and that ShellInfo has been filled in by broadcasting to it
455 MonitorShellCommand(std::shared_ptr<ShellInfo> shell_info, lldb::pid_t pid, bool exited, int signo, int status) argument

Completed in 284 milliseconds

123