diff options
author | Alan Maguire <alan.maguire@oracle.com> | 2020-08-04 22:47:42 +0200 |
---|---|---|
committer | Shuah Khan <skhan@linuxfoundation.org> | 2020-10-09 22:37:34 +0200 |
commit | aac35468ca20a3a0e75a24c13c0e31610727f120 (patch) | |
tree | 54be2cb278226cff9c2cdd6fef0fdc7795b2e4ea /lib/kunit/test.c | |
parent | vmlinux.lds.h: add linker section for KUnit test suites (diff) | |
download | linux-aac35468ca20a3a0e75a24c13c0e31610727f120.tar.xz linux-aac35468ca20a3a0e75a24c13c0e31610727f120.zip |
kunit: test: create a single centralized executor for all tests
Add a centralized executor to dispatch tests rather than relying on
late_initcall to schedule each test suite separately. Centralized
execution is for built-in tests only; modules will execute tests when
loaded.
Signed-off-by: Alan Maguire <alan.maguire@oracle.com>
Co-developed-by: Iurii Zaikin <yzaikin@google.com>
Signed-off-by: Iurii Zaikin <yzaikin@google.com>
Co-developed-by: Brendan Higgins <brendanhiggins@google.com>
Signed-off-by: Brendan Higgins <brendanhiggins@google.com>
Reviewed-by: Stephen Boyd <sboyd@kernel.org>
Reviewed-by: Kees Cook <keescook@chromium.org>
Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
Diffstat (limited to '')
-rw-r--r-- | lib/kunit/test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/kunit/test.c b/lib/kunit/test.c index c36037200310..3fd89f91937f 100644 --- a/lib/kunit/test.c +++ b/lib/kunit/test.c @@ -381,7 +381,7 @@ static void kunit_init_suite(struct kunit_suite *suite) kunit_debugfs_create_suite(suite); } -int __kunit_test_suites_init(struct kunit_suite **suites) +int __kunit_test_suites_init(struct kunit_suite * const * const suites) { unsigned int i; |