Home
last modified time | relevance | path

Searched refs:test_status (Results 1 – 21 of 21) sorted by relevance

/external/jemalloc/test/src/
Dtest.c5 static test_status_t test_status = test_status_pass; variable
18 test_status = test_status_skip; in test_skip()
31 test_status = test_status_fail; in test_fail()
35 test_status_string(test_status_t test_status) in test_status_string() argument
38 switch (test_status) { in test_status_string()
51 test_status = test_status_pass; in p_test_init()
59 test_counts[test_status]++; in p_test_fini()
60 malloc_printf("%s: %s\n", test_name, test_status_string(test_status)); in p_test_fini()
85 if (test_status > ret) in p_test()
86 ret = test_status; in p_test()
[all …]
/external/autotest/client/site_tests/network_EthernetStressPlug/
Dnetwork_EthernetStressPlug.py109 self.test_status = {
166 self.test_status['ipaddress'] = ethernet_status['ipaddress']
173 self.test_status['eth_state'] = False
174 self.test_status['reason'] = '%s is not ready: %s == %s' \
179 self.test_status['eth_state'] = False
180 self.test_status['reason'] = '%s is not ready. (%s)\n' \
188 self.test_status['eth_state'] = True
189 self.test_status['reason'] = None
275 self.test_status['ipaddress'] is not None) \
278 self.test_status['ipaddress'] is None):
[all …]
/external/autotest/server/
Dfrontend.py159 test_status = []
172 test_status.append(status_dict)
174 return [TestStatus(self, e) for e in test_status]
460 for test_status in job.test_status[host].fail:
462 (host, test_status.test_name,
463 test_status.reason))
595 job.test_status = {}
603 for test_status in test_statuses:
605 if test_status.test_name == 'SERVER_JOB':
608 if tests and test_status.test_name not in tests:
[all …]
Dsite_gtest_runner.py239 test_status = self._test_status.get(test, ('not known', []))
240 return test_status[0]
289 test_status = self._test_status.get(test, ('', []))
290 return test_status[1]
/external/autotest/client/virt/
Dvirt_scheduler.py100 test_status = ["waiting"] * len(self.tests)
127 test_status[test_index] = ("fail", "pass")[status]
133 test_status[i] = "fail"
149 if test_status[i] != "waiting":
160 if test_status[j] != "pass"]
194 test_status[i] = "running"
/external/autotest/tko/
Dsite_parse.py193 for test_status in list(results):
194 if test_status['crashes']:
196 elif test_status['status'] == 'PASS':
197 results.remove(test_status)
/external/autotest/client/tools/
Dscan_results.py38 test_status = parts[0].split()[1]
42 result_list.append((test_name, test_status,
/external/autotest/server/cros/
Dgoofy_client.py265 def _log_test_results(self, test_status, current_suite): argument
274 (current_suite, test_status.get('path'),
275 test_status.get('status')))
/external/autotest/puppylab/
Dresults_mocker.py63 self.test_status = os.path.join(self.test_results, 'status')
124 self.test_status,
/external/autotest/site_utils/
Dtest_push.py347 for test_name,test_status in test_views.items():
348 print "%s%s" % (test_name.ljust(30), test_status)
358 if val != test_status:
360 (test_name, val, test_status))
/external/autotest/client/bin/
Dharness_simple.py28 def test_status(self, status, tag): member in harness_simple
Dharness.py75 def test_status(self, status, tag): member in harness
Dharness_autoserv.py76 def test_status(self, status, tag): member in harness_autoserv
Dharness_ABAT.py143 def test_status(self, msg, tag): member in harness_ABAT
Djob.py208 self.harness.test_status(rendered_entry, msg_tag)
/external/libnfc-nxp/src/
DphHciNfc_DevMgmt.h329 uint8_t test_status
DphHciNfc_DevMgmt.c132 uint8_t test_status; member
306 uint8_t test_status in phHciNfc_DevMgmt_Set_Test_Result() argument
318 p_device_mgmt_info->test_status = test_status; in phHciNfc_DevMgmt_Set_Test_Result()
1264 p_device_mgmt_info->test_status = (uint8_t) ( length > HCP_HEADER_LEN ) ? in phHciNfc_Recv_DevMgmt_Response()
DphHciNfc_Sequence.c176 NFCSTATUS test_status,
196 NFCSTATUS test_status,
2433 NFCSTATUS test_status, in phHciNfc_Test_Sequence() argument
2447 comp_info.status = test_status; in phHciNfc_Test_Sequence()
2462 HCI_DEBUG(" HCI System Test Completed : Status = %u\n", test_status); in phHciNfc_Test_Sequence()
/external/chromium-trace/catapult/third_party/webapp2/tests/
Dresponse_test.py71 def test_status(self): member in TestResponse
/external/autotest/frontend/afe/
Dmodels_test.py91 def test_status(self): member in SpecialTaskUnittest
/external/valgrind/coregrind/m_syswrap/
Dsyswrap-main.c2096 SyscallStatus test_status; in VG_() local
2127 getSyscallStatusFromGuestState( &test_status, &tst->arch.vex ); in VG_()
2129 vg_assert(eq_SyscallStatus( sysno, &sci->status, &test_status )); in VG_()