Home
last modified time | relevance | path

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

/Linux-v6.6/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-v6.6/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-v6.6/tools/perf/util/
Dexpr.c509 bool compute_ids __maybe_unused, const char *test_id) in expr__strcmp_cpuid_str() argument
518 ret = !strcmp_cpuid_str(test_id, cpuid); in expr__strcmp_cpuid_str()
/Linux-v6.6/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-v6.6/drivers/net/ethernet/sfc/
Dethtool_common.c260 const char *test_format, const char *test_id) in efx_fill_test() argument
275 snprintf(test_str, sizeof(test_str), test_format, test_id); in efx_fill_test()
/Linux-v6.6/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-v6.6/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-v6.6/drivers/net/fddi/
Ddefxx.h975 PI_UINT32 test_id; member
/Linux-v6.6/lib/
Dtest_bpf.c14584 static int test_id = -1; variable
14585 module_param(test_id, int, 0);
14590 static bool exclude_test(int test_id) in exclude_test() argument
14592 return test_id < test_range[0] || test_id > test_range[1]; in exclude_test()
15253 if (test_id >= 0) { in prepare_test_range()
15258 if (test_id >= valid_range) { in prepare_test_range()
15264 test_range[0] = test_id; in prepare_test_range()
15265 test_range[1] = test_id; in prepare_test_range()
15317 (test_id != -1 || strlen(test_name) || in test_bpf_init()