diff options
author | Guenter Roeck <linux@roeck-us.net> | 2024-09-22 17:52:26 +0300 |
---|---|---|
committer | Paul Moore <paul@paul-moore.com> | 2024-09-23 22:53:37 +0300 |
commit | f89722faa31466ff41aed21bdeb9cf34c2312858 (patch) | |
tree | b8429d4758eee434c9321406bf8f6b666053baef | |
parent | 8a23c9e1ba4642b60420e8caa75859883a509c24 (diff) | |
download | linux-f89722faa31466ff41aed21bdeb9cf34c2312858.tar.xz |
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 <deven.desai@linux.microsoft.com>
Cc: Paul Moore <paul@paul-moore.com>
Cc: Fan Wu <wufan@linux.microsoft.com>
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Acked-by: Fan Wu <wufan@linux.microsoft.com>
Signed-off-by: Paul Moore <paul@paul-moore.com>
-rw-r--r-- | security/ipe/policy_tests.c | 1 |
1 files changed, 1 insertions, 0 deletions
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 = { |