summaryrefslogtreecommitdiff
path: root/tests/commonlib/bsd/string-test.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/commonlib/bsd/string-test.c')
-rw-r--r--tests/commonlib/bsd/string-test.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/commonlib/bsd/string-test.c b/tests/commonlib/bsd/string-test.c
index 37419f049d..194177abbb 100644
--- a/tests/commonlib/bsd/string-test.c
+++ b/tests/commonlib/bsd/string-test.c
@@ -23,6 +23,9 @@ static void test_strlen(void **state)
static void test_strnlen(void **state)
{
+ /* maxlen is SIZE_MAX */
+ assert_int_equal(8, strnlen("coreboot", SIZE_MAX));
+
/* maxlen larger than string len */
assert_int_equal(8, strnlen("coreboot", 100));