Module Name: src
Committed By: christos
Date: Wed Aug 23 10:29:51 UTC 2017
Modified Files:
src/tests/lib/libc/string: t_stresep.c
Log Message:
Add test from PR/52499
To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/tests/lib/libc/string/t_stresep.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/tests/lib/libc/string/t_stresep.c
diff -u src/tests/lib/libc/string/t_stresep.c:1.3 src/tests/lib/libc/string/t_stresep.c:1.4
--- src/tests/lib/libc/string/t_stresep.c:1.3 Fri Feb 15 18:56:32 2013
+++ src/tests/lib/libc/string/t_stresep.c Wed Aug 23 06:29:51 2017
@@ -1,4 +1,4 @@
-/* $NetBSD: t_stresep.c,v 1.3 2013/02/15 23:56:32 christos Exp $ */
+/* $NetBSD: t_stresep.c,v 1.4 2017/08/23 10:29:51 christos Exp $ */
/*-
* Copyright (c) 2005 The NetBSD Foundation, Inc.
@@ -61,6 +61,12 @@ ATF_TC_BODY(stresep_basic, tc)
expect("bar foo");
expect(" baz");
expect("bar ");
+
+ char brkstr2[] = "aa bb cc\\ \\ \\ \\ dd-";
+ q = brkstr2;
+ expect("aa");
+ expect("bb");
+ expect("cc dd-");
}
ATF_TP_ADD_TCS(tp)