Lines Matching refs:test
66 static void test_pxe_one(const testdef_t *test, bool ipv6) in test_pxe_one() argument
70 const char *extra = test->extra; in test_pxe_one()
80 test->machine, disk, ipv6 ? "off" : "on", ipv6 ? "on" : "off", in test_pxe_one()
81 test->model, extra); in test_pxe_one()
91 const testdef_t *test = data; in test_pxe_ipv4() local
93 test_pxe_one(test, false); in test_pxe_ipv4()
98 const testdef_t *test = data; in test_pxe_ipv6() local
100 test_pxe_one(test, true); in test_pxe_ipv6()
108 const testdef_t *test = &tests[i]; in test_batch() local
111 if (!qtest_has_device(test->model)) { in test_batch()
116 test->machine, test->model); in test_batch()
117 qtest_add_data_func(testname, test, test_pxe_ipv4); in test_batch()
122 test->machine, test->model); in test_batch()
123 qtest_add_data_func(testname, test, test_pxe_ipv6); in test_batch()