On 8/7/24 11:31 AM, Kui-Feng Lee wrote:
+static bool should_tmon(struct test_selector *sel, int num, const char *name)
"int num" is not used. -m is name only, so not needed?
+{ + int i; + + for (i = 0; i < sel->whitelist.cnt; i++) { + if (glob_match(name, sel->whitelist.tests[i].name) && + !sel->whitelist.tests[i].subtest_cnt) + return true; + } + + return false; +} +