diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2012-10-05 13:30:02 -0700 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2012-10-05 13:32:27 -0700 |
commit | d7e0dab96d1a855f7ff779195010c188c334669e (patch) | |
tree | 7ff4e149505a7a2a533fa18b54d33e20f95747ec /string/test-strstr.c | |
parent | 03759f47db62930f2dddf1c9733ef89b9d99e2da (diff) | |
download | glibc-d7e0dab96d1a855f7ff779195010c188c334669e.tar glibc-d7e0dab96d1a855f7ff779195010c188c334669e.tar.gz glibc-d7e0dab96d1a855f7ff779195010c188c334669e.tar.bz2 glibc-d7e0dab96d1a855f7ff779195010c188c334669e.zip |
Add a testase for BZ #14602
Diffstat (limited to 'string/test-strstr.c')
-rw-r--r-- | string/test-strstr.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/string/test-strstr.c b/string/test-strstr.c index e7d8e73ba8..1aebd351c3 100644 --- a/string/test-strstr.c +++ b/string/test-strstr.c @@ -156,12 +156,24 @@ check1 (void) check_result (impl, s1, s2, exp_result); } +static void +check2 (void) +{ + const char s1[] = ", enable_static, \0, enable_shared, "; + char *exp_result; + + exp_result = stupid_strstr (s1, s1 + 18); + FOR_EACH_IMPL (impl, 0) + check_result (impl, s1, s1 + 18, exp_result); +} + static int test_main (void) { test_init (); check1 (); + check2 (); printf ("%23s", ""); FOR_EACH_IMPL (impl, 0) |