aboutsummaryrefslogtreecommitdiff
path: root/string/test-strncmp.c
diff options
context:
space:
mode:
Diffstat (limited to 'string/test-strncmp.c')
-rw-r--r--string/test-strncmp.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/string/test-strncmp.c b/string/test-strncmp.c
index df7cea4..1a87f0e 100644
--- a/string/test-strncmp.c
+++ b/string/test-strncmp.c
@@ -446,6 +446,18 @@ check4 (void)
}
static void
+check5 (void)
+{
+ const CHAR *s1 = L ("abc");
+ CHAR *s2 = STRDUP (s1);
+
+ FOR_EACH_IMPL (impl, 0)
+ check_result (impl, s1, s2, SIZE_MAX, 0);
+
+ free (s2);
+}
+
+static void
check_overflow (void)
{
size_t i, j, of_mask, of_idx;
@@ -569,6 +581,7 @@ test_main (void)
check2 ();
check3 ();
check4 ();
+ check5 ();
printf ("%23s", "");
FOR_EACH_IMPL (impl, 0)