File tree Expand file tree Collapse file tree 2 files changed +16
-2
lines changed Expand file tree Collapse file tree 2 files changed +16
-2
lines changed Original file line number Diff line number Diff line change @@ -606,8 +606,6 @@ static void xe_bo_shrink_kunit(struct kunit *test)
606
606
static struct kunit_case xe_bo_tests [] = {
607
607
KUNIT_CASE_PARAM (xe_ccs_migrate_kunit , xe_pci_live_device_gen_param ),
608
608
KUNIT_CASE_PARAM (xe_bo_evict_kunit , xe_pci_live_device_gen_param ),
609
- KUNIT_CASE_PARAM_ATTR (xe_bo_shrink_kunit , xe_pci_live_device_gen_param ,
610
- {.speed = KUNIT_SPEED_SLOW }),
611
609
{}
612
610
};
613
611
@@ -618,3 +616,17 @@ struct kunit_suite xe_bo_test_suite = {
618
616
.init = xe_kunit_helper_xe_device_live_test_init ,
619
617
};
620
618
EXPORT_SYMBOL_IF_KUNIT (xe_bo_test_suite );
619
+
620
+ static struct kunit_case xe_bo_shrink_test [] = {
621
+ KUNIT_CASE_PARAM_ATTR (xe_bo_shrink_kunit , xe_pci_live_device_gen_param ,
622
+ {.speed = KUNIT_SPEED_SLOW }),
623
+ {}
624
+ };
625
+
626
+ VISIBLE_IF_KUNIT
627
+ struct kunit_suite xe_bo_shrink_test_suite = {
628
+ .name = "xe_bo_shrink" ,
629
+ .test_cases = xe_bo_shrink_test ,
630
+ .init = xe_kunit_helper_xe_device_live_test_init ,
631
+ };
632
+ EXPORT_SYMBOL_IF_KUNIT (xe_bo_shrink_test_suite );
Original file line number Diff line number Diff line change 6
6
#include <kunit/test.h>
7
7
8
8
extern struct kunit_suite xe_bo_test_suite ;
9
+ extern struct kunit_suite xe_bo_shrink_test_suite ;
9
10
extern struct kunit_suite xe_dma_buf_test_suite ;
10
11
extern struct kunit_suite xe_migrate_test_suite ;
11
12
extern struct kunit_suite xe_mocs_test_suite ;
12
13
13
14
kunit_test_suite (xe_bo_test_suite );
15
+ kunit_test_suite (xe_bo_shrink_test_suite );
14
16
kunit_test_suite (xe_dma_buf_test_suite );
15
17
kunit_test_suite (xe_migrate_test_suite );
16
18
kunit_test_suite (xe_mocs_test_suite );
You can’t perform that action at this time.
0 commit comments