30 static_cast<unsigned int> (lhs) |
static_cast<unsigned int>(rhs));
38 static_cast<unsigned int> (lhs) &
static_cast<unsigned int>(rhs));
47 auto service_process =
core::posix::fork(service, core::posix::StandardStream::empty);
48 auto client_process =
core::posix::fork(client, core::posix::StandardStream::empty);
50 auto client_result = client_process.wait_for(core::posix::wait::Flags::untraced);
52 switch (client_result.status)
56 result = result | core::testing::ForkAndRunResult::client_failed;
59 result = result | core::testing::ForkAndRunResult::client_failed;
63 service_process.send_signal_or_throw(core::posix::Signal::sig_term);
64 auto service_result = service_process.wait_for(core::posix::wait::Flags::untraced);
66 switch (service_result.status)