From: Guenter Roeck Date: Sun, 22 Sep 2024 14:52:26 +0000 (-0700) Subject: ipe: Add missing terminator to list of unit tests X-Git-Tag: v6.12~356^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f89722faa31466ff41aed21bdeb9cf34c2312858;p=platform%2Fkernel%2Flinux-amlogic.git ipe: Add missing terminator to list of unit tests Add missing terminator to list of unit tests to avoid random crashes seen when running the test. Fixes: 10ca05a76065 ("ipe: kunit test for parser") Cc: Deven Bowers Cc: Paul Moore Cc: Fan Wu Signed-off-by: Guenter Roeck Acked-by: Fan Wu Signed-off-by: Paul Moore --- diff --git a/security/ipe/policy_tests.c b/security/ipe/policy_tests.c index 89521f6b9994..5f1654deeb04 100644 --- a/security/ipe/policy_tests.c +++ b/security/ipe/policy_tests.c @@ -286,6 +286,7 @@ static void ipe_parser_widestring_test(struct kunit *test) static struct kunit_case ipe_parser_test_cases[] = { KUNIT_CASE_PARAM(ipe_parser_unsigned_test, ipe_policies_gen_params), KUNIT_CASE(ipe_parser_widestring_test), + { } }; static struct kunit_suite ipe_parser_test_suite = {