Lines Matching defs:test_id
6702 static int test_id = -1;
6703 module_param(test_id, int, 0);
6723 if (test_id >= 0) {
6725 * if a test_id was specified, use test_range to
6728 if (test_id >= ARRAY_SIZE(tests)) {
6729 pr_err("test_bpf: invalid test_id specified.\n");
6733 test_range[0] = test_id;
6734 test_range[1] = test_id;
6785 static bool exclude_test(int test_id)
6787 return test_id < test_range[0] || test_id > test_range[1];