@@ -150,11 +150,6 @@ static const char *test_description(const struct test_suite *t, int subtest)
150
150
return t -> desc ;
151
151
}
152
152
153
- static bool is_supported (const struct test_suite * t )
154
- {
155
- return !t -> is_supported || t -> is_supported ();
156
- }
157
-
158
153
static test_fnptr test_function (const struct test_suite * t , int subtest )
159
154
{
160
155
if (subtest <= 0 )
@@ -480,12 +475,6 @@ static int __cmd_test(int argc, const char *argv[], struct intlist *skiplist)
480
475
continue ;
481
476
}
482
477
483
- if (!is_supported (t )) {
484
- pr_debug ("%2d: %-*s: Disabled\n" , i , width ,
485
- test_description (t , -1 ));
486
- continue ;
487
- }
488
-
489
478
pr_info ("%2d: %-*s:" , i , width , test_description (t , -1 ));
490
479
491
480
if (intlist__find (skiplist , i )) {
@@ -583,8 +572,7 @@ static int perf_test__list(int argc, const char **argv)
583
572
for_each_test (j , k , t ) {
584
573
int curr = i ++ ;
585
574
586
- if (!perf_test__matches (test_description (t , -1 ), curr , argc , argv ) ||
587
- !is_supported (t ))
575
+ if (!perf_test__matches (test_description (t , -1 ), curr , argc , argv ))
588
576
continue ;
589
577
590
578
pr_info ("%2d: %s\n" , i , test_description (t , -1 ));
0 commit comments