Lines Matching defs:test_id
14584 static int test_id = -1;
14585 module_param(test_id, int, 0);
14590 static bool exclude_test(int test_id)
14592 return test_id < test_range[0] || test_id > test_range[1];
15253 if (test_id >= 0) {
15255 * if a test_id was specified, use test_range to
15258 if (test_id >= valid_range) {
15259 pr_err("test_bpf: invalid test_id specified for '%s' suite.\n",
15264 test_range[0] = test_id;
15265 test_range[1] = test_id;
15313 * if test_suite is not specified, but test_id, test_name or test_range
15317 (test_id != -1 || strlen(test_name) ||