{"txmsg_skb", no_argument, &txmsg_skb, 1 },
{"ktls", no_argument, &ktls, 1 },
{"peek", no_argument, &peek_flag, 1 },
+ {"whitelist", required_argument, NULL, 'n' },
{0, 0, NULL, 0 }
};
int iov_length;
int rate;
char *map;
+ char *whitelist;
};
static int msg_loop_sendpage(int fd, int iov_length, int cnt,
{"txmsg test push/pop data", test_txmsg_push_pop},
};
+static int check_whitelist(struct _test *t, struct sockmap_options *opt)
+{
+ char *entry, *ptr;
+
+ if (!opt->whitelist)
+ return 0;
+ ptr = strdup(opt->whitelist);
+ if (!ptr)
+ return -ENOMEM;
+ entry = strtok(ptr, ",");
+ while (entry) {
+ if (strstr(opt->map, entry) != 0 || strstr(t->title, entry) != 0)
+ return 0;
+ entry = strtok(NULL, ",");
+ }
+ return -EINVAL;
+}
+
static int __test_selftests(int cg_fd, struct sockmap_options *opt)
{
int i, err;
for (i = 0; i < sizeof(test)/sizeof(struct _test); i++) {
struct _test t = test[i];
+ if (check_whitelist(&t, opt) < 0)
+ continue;
+
test_start_subtest(t.title, opt->map);
t.tester(cg_fd, opt);
test_end_subtest();
int test = SELFTESTS;
bool cg_created = 0;
- while ((opt = getopt_long(argc, argv, ":dhv:c:r:i:l:t:p:q:",
+ while ((opt = getopt_long(argc, argv, ":dhv:c:r:i:l:t:p:q:n:",
long_options, &longindex)) != -1) {
switch (opt) {
case 's':
return -1;
}
break;
+ case 'n':
+ options.whitelist = strdup(optarg);
+ if (!options.whitelist)
+ return -ENOMEM;
case 0:
break;
case 'h':
err = run_options(&options, cg_fd, test);
out:
+ if (options.whitelist)
+ free(options.whitelist);
if (cg_created)
cleanup_cgroup_environment();
close(cg_fd);