+2009-05-26 Simon Josefsson <simon@josefsson.org>
+
+ * tests/test-strstr.c: Add another self-test.
+
2009-05-23 Bruno Haible <bruno@clisp.org>
* doc/havelib.texi (AC_LIB_HAVE_LINKFLAGS): Update for 2009-04-26
/*
- * Copyright (C) 2004, 2007, 2008 Free Software Foundation
+ * Copyright (C) 2004, 2007, 2008, 2009 Free Software Foundation
* Written by Bruno Haible and Eric Blake
*
* This program is free software: you can redistribute it and/or modify
ASSERT (result == input + 1);
}
+ {
+ /* See http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=521737 */
+ char *input = strdup ("aBaaaaaaaaaaax");
+ const char *result = strstr (input, "B1x");
+ ASSERT (result == NULL);
+ free (input);
+ }
+
{
const char input[] = "ABC ABCDAB ABCDABCDABDE";
const char *result = strstr (input, "ABCDABD");