diff options
author | Brendan Higgins <brendan.higgins@linux.dev> | 2023-01-31 10:35:03 +0800 |
---|---|---|
committer | Shuah Khan <skhan@linuxfoundation.org> | 2023-01-31 09:10:38 -0700 |
commit | 254c71374a70051a043676b67ba4f7ad392b5fe6 (patch) | |
tree | 779ff20f1e2d4b00fe47627c9836ee5e3fb7e065 /include/kunit | |
parent | dd2f0a0a2f751b7aafaea5cbba8e65a55fd12f94 (diff) |
kunit: fix kunit_test_init_section_suites(...)
Looks like kunit_test_init_section_suites(...) was messed up in a merge
conflict. This fixes it.
kunit_test_init_section_suites(...) was not updated to avoid the extra
level of indirection when .kunit_test_suites was flattened. Given no-one
was actively using it, this went unnoticed for a long period of time.
Fixes: e5857d396f35 ("kunit: flatten kunit_suite*** to kunit_suite** in .kunit_test_suites")
Signed-off-by: Brendan Higgins <brendan.higgins@linux.dev>
Signed-off-by: David Gow <davidgow@google.com>
Tested-by: Martin Fernandez <martin.fernandez@eclypsium.com>
Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
Diffstat (limited to 'include/kunit')
-rw-r--r-- | include/kunit/test.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/kunit/test.h b/include/kunit/test.h index a20bff149bdf..08d3559dd703 100644 --- a/include/kunit/test.h +++ b/include/kunit/test.h @@ -303,7 +303,6 @@ static inline int kunit_run_all_tests(void) */ #define kunit_test_init_section_suites(__suites...) \ __kunit_test_suites(CONCATENATE(__UNIQUE_ID(array), _probe), \ - CONCATENATE(__UNIQUE_ID(suites), _probe), \ ##__suites) #define kunit_test_init_section_suite(suite) \ |