Home
last modified time | relevance | path

Searched refs:test_id (Results 1 – 11 of 11) sorted by relevance

/linux-6.1.9/tools/testing/selftests/tc-testing/
DTdcResults.py12 def __init__(self, test_id="", test_name=""): argument
13 self.test_id = test_id
78 def find_result(self, test_id): argument
79 return next((tr for tr in self._testsuite if tr.test_id == test_id), None)
82 orig = self.find_result(result_data.test_id)
96 ftap += 'ok {} {} - {}'.format(str(index), t.test_id, t.test_name)
114 xunit += '\t\t<testcase classname=\"{}\" '.format(escape(t.test_id))
/linux-6.1.9/tools/testing/vsock/
Dutil.c380 unsigned long test_id; in skip_test() local
384 test_id = strtoul(test_id_str, &endptr, 10); in skip_test()
390 if (test_id >= test_cases_len) { in skip_test()
392 test_id, test_cases_len - 1); in skip_test()
396 test_cases[test_id].skip = true; in skip_test()
/linux-6.1.9/drivers/staging/greybus/tools/
Dlbtest118 test_id = dict[test_name]
129 write_sysfs_val(sys_pfx + 'type', test_id)
Dloopback_test.c86 int test_id; member
820 write_sysfs_val(t->devices[i].sysfs_entry, "type", t->test_id); in start()
834 t->test_id = dict[i].type; in loopback_run()
836 if (!t->test_id) { in loopback_run()
/linux-6.1.9/drivers/scsi/lpfc/
Dlpfc_bsg.h84 uint32_t test_id; member
Dlpfc_bsg.c2416 link_diag_test_cmd->test_id); in lpfc_sli4_bsg_link_diag_test()
/linux-6.1.9/drivers/net/ethernet/sfc/siena/
Dethtool_common.c211 const char *test_format, const char *test_id) in efx_fill_test() argument
226 snprintf(test_str, sizeof(test_str), test_format, test_id); in efx_fill_test()
/linux-6.1.9/drivers/net/ethernet/sfc/
Dethtool_common.c268 const char *test_format, const char *test_id) in efx_fill_test() argument
283 snprintf(test_str, sizeof(test_str), test_format, test_id); in efx_fill_test()
/linux-6.1.9/drivers/net/ethernet/sfc/falcon/
Dethtool.c211 const char *test_format, const char *test_id) in ef4_fill_test() argument
226 snprintf(test_str, sizeof(test_str), test_format, test_id); in ef4_fill_test()
/linux-6.1.9/drivers/net/fddi/
Ddefxx.h975 PI_UINT32 test_id; member
/linux-6.1.9/lib/
Dtest_bpf.c14593 static int test_id = -1; variable
14594 module_param(test_id, int, 0);
14599 static bool exclude_test(int test_id) in exclude_test() argument
14601 return test_id < test_range[0] || test_id > test_range[1]; in exclude_test()
15263 if (test_id >= 0) { in prepare_test_range()
15268 if (test_id >= valid_range) { in prepare_test_range()
15274 test_range[0] = test_id; in prepare_test_range()
15275 test_range[1] = test_id; in prepare_test_range()
15327 (test_id != -1 || strlen(test_name) || in test_bpf_init()