HomeSort by relevance Sort by last modified time
    Searched refs:expected_exit_status (Results 1 - 4 of 4) sorted by null

  /external/avb/test/
avb_unittest_util.h 43 * the command exits normally with exit status |expected_exit_status|.
45 #define EXPECT_COMMAND(expected_exit_status, command_format, ...) \
50 EXPECT_EQ(WEXITSTATUS(rc), expected_exit_status); \
  /external/autotest/server/site_tests/firmware_Cr50RMAOpen/
firmware_Cr50RMAOpen.py 127 def rma_cli(self, authcode='', disable=False, expected_exit_status=SUCCESS):
133 expected_exit_status: the expected exit status
141 if expected_exit_status:
150 def rma_ap(self, authcode='', disable=False, expected_exit_status=SUCCESS):
156 expected_exit_status: the expected exit status
171 if expected_exit_status:
183 # the expected_exit_status will raise it. Ignore any warning messages in
189 if result.exit_status != expected_exit_status:
191 (expected_exit_status, result.exit_status))
251 auth_func(authcode=authcode, expected_exit_status=exit_status
    [all...]
  /bionic/tests/
utils.h 161 static inline void AssertChildExited(int pid, int expected_exit_status,
169 if (expected_exit_status >= 0) {
171 ASSERT_EQ(expected_exit_status, WEXITSTATUS(status)) << *error_msg;
174 ASSERT_EQ(-expected_exit_status, WTERMSIG(status)) << *error_msg;
216 void Run(const std::function<void()>& child_fn, int expected_exit_status,
245 AssertChildExited(pid, expected_exit_status, &error_msg);
  /external/autotest/scheduler/
monitor_db_unittest.py 568 def _check_monitor(self, expected_pid, expected_exit_status,
574 self.assertEquals(self.monitor._state.exit_status, expected_exit_status)
582 def _test_read_pidfile_helper(self, expected_pid, expected_exit_status,
585 self._check_monitor(expected_pid, expected_exit_status,
589 def _get_expected_tests_failed(self, expected_exit_status):
590 if expected_exit_status is None:
625 def _test_get_pidfile_info_helper(self, expected_pid, expected_exit_status,
628 self._check_monitor(expected_pid, expected_exit_status,
    [all...]

Completed in 681 milliseconds