forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 430
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Kunit to check the longest symbol length
Kunit test to check the maximum longest symbol length Signed-off-by: Sergio González Collado <[email protected]>
- Loading branch information
1 parent
3dfc5eb
commit 92c3858
Showing
3 changed files
with
87 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
// SPDX-License-Identifier: GPL-2.0 | ||
/* | ||
* Test the longest symbol length | ||
*/ | ||
|
||
#include <kunit/test.h> | ||
#include <linux/stringify.h> | ||
#include <linux/kallsyms.h> | ||
|
||
#define DI(name) s##name##name | ||
#define DDI(name) DI(n##name##name) | ||
#define DDDI(name) DDI(n##name##name) | ||
#define DDDDI(name) DDDI(n##name##name) | ||
#define DDDDDI(name) DDDDI(n##name##name) | ||
|
||
#define PLUS1(name) name##e | ||
|
||
/*Generate a symbol whose name length is 511 */ | ||
#define LONGEST_SYM_NAME DDDDDI(g1h2i3j4k5l6m7n) | ||
|
||
/*Generate a symbol whose name length is 512 */ | ||
#define LONGEST_SYM_PLUS1 PLUS1(LONGEST_SYM_NAME) | ||
|
||
int noinline LONGEST_SYM_NAME(void) | ||
{ | ||
return 424242; | ||
} | ||
|
||
int noinline LONGEST_SYM_NAME_PLUS1(void) | ||
{ | ||
return 434343; | ||
} | ||
|
||
_Static_assert(sizeof(__stringify(LONGEST_SYM_NAME)) == KSYM_NAME_LEN, \ | ||
"Incorrect symbol length found. Expected KSYM_NAME_LEN: " \ | ||
__stringify(KSYM_NAME) ", but found: " \ | ||
__stringify(sizeof(LONGEST_SYM_NAME))); | ||
|
||
static void test_longest_symbol(struct kunit *test) | ||
{ | ||
KUNIT_EXPECT_EQ(test, 424242, LONGEST_SYM_NAME()); | ||
}; | ||
|
||
static void test_longest_symbol_kallsyms(struct kunit *test) | ||
{ | ||
static int (*longest_sym)(void); | ||
longest_sym = \ | ||
(void*) kallsyms_lookup_name(__stringify(LONGEST_SYM_NAME)); | ||
KUNIT_EXPECT_EQ(test, 424242, longest_sym()); | ||
}; | ||
|
||
static void test_longest_symbol_plus1(struct kunit *test) | ||
{ | ||
KUNIT_EXPECT_EQ(test, 434343, LONGEST_SYM_NAME_PLUS1()); | ||
}; | ||
|
||
static void test_longest_symbol_plus1_kallsyms(struct kunit *test) | ||
{ | ||
static int (*longest_sym_plus1)(void); | ||
longest_sym_plus1 = \ | ||
(void*) kallsyms_lookup_name(__stringify(LONGEST_SYM_NAME_PLUS1)); | ||
KUNIT_EXPECT_EQ(test, 434343, longest_sym_plus1()); | ||
}; | ||
|
||
static struct kunit_case longest_symbol_test_cases[] = { | ||
KUNIT_CASE(test_longest_symbol), | ||
KUNIT_CASE(test_longest_symbol_kallsyms), | ||
KUNIT_CASE(test_longest_symbol_plus1), | ||
KUNIT_CASE(test_longest_symbol_plus1_kallsyms), | ||
{} | ||
}; | ||
|
||
static struct kunit_suite longest_symbol_test_suite = { | ||
.name = "longest-symbol", | ||
.test_cases = longest_symbol_test_cases, | ||
}; | ||
kunit_test_suite(longest_symbol_test_suite); |