Index: tests/io/.expect/manipulatorsInput.arm64.txt
===================================================================
--- tests/io/.expect/manipulatorsInput.arm64.txt	(revision bf1cbde8549594a47893ee6d678e5552340e47a3)
+++ tests/io/.expect/manipulatorsInput.arm64.txt	(revision 8cffa4f21ad8d447fa5f37d523e6acfb4906f3d0)
@@ -15,4 +15,6 @@
 12 wwwwwwww
 13 wwwwwwww
+14 rc=1, cccc
+15 rc=0, q
 1 yyyyyyyyyyyyyyyyyyyy
 2 abcxxx
@@ -28,4 +30,6 @@
 12 wwwwwwww
 13 wwwwwwww
+14 cccc
+15
 a
 a
Index: tests/io/.expect/manipulatorsInput.x64.txt
===================================================================
--- tests/io/.expect/manipulatorsInput.x64.txt	(revision bf1cbde8549594a47893ee6d678e5552340e47a3)
+++ tests/io/.expect/manipulatorsInput.x64.txt	(revision 8cffa4f21ad8d447fa5f37d523e6acfb4906f3d0)
@@ -15,4 +15,6 @@
 12 wwwwwwww
 13 wwwwwwww
+14 rc=1, cccc
+15 rc=0, q
 1 yyyyyyyyyyyyyyyyyyyy
 2 abcxxx
@@ -28,4 +30,6 @@
 12 wwwwwwww
 13 wwwwwwww
+14 cccc
+15
 a
 a
Index: tests/io/.expect/manipulatorsInput.x86.txt
===================================================================
--- tests/io/.expect/manipulatorsInput.x86.txt	(revision bf1cbde8549594a47893ee6d678e5552340e47a3)
+++ tests/io/.expect/manipulatorsInput.x86.txt	(revision 8cffa4f21ad8d447fa5f37d523e6acfb4906f3d0)
@@ -15,4 +15,6 @@
 12 wwwwwwww
 13 wwwwwwww
+14 rc=1, cccc
+15 rc=0, q
 1 yyyyyyyyyyyyyyyyyyyy
 2 abcxxx
@@ -28,4 +30,6 @@
 12 wwwwwwww
 13 wwwwwwww
+14 cccc
+15
 a
 a
Index: tests/io/.in/manipulatorsInput.txt
===================================================================
--- tests/io/.in/manipulatorsInput.txt	(revision bf1cbde8549594a47893ee6d678e5552340e47a3)
+++ tests/io/.in/manipulatorsInput.txt	(revision 8cffa4f21ad8d447fa5f37d523e6acfb4906f3d0)
@@ -7,4 +7,5 @@
 abcyyy
 aaaaaaaaxxxxxxxxaabbccbbdddwwwbbbbbbbbwwwwwwwwaaaaaaaawwwwwwww
+uuuuuccccuuuuu
 abc 
 cccccb 
@@ -13,4 +14,5 @@
 abcyyy
 aaaaaaaaxxxxxxxxaabbccbbdddwwwbbbbbbbbwwwwwwwwaaaaaaaawwwwwwww
+uuuuuccccuuuuu
 ab
 0xff 017 15-15
Index: tests/io/manipulatorsInput.cfa
===================================================================
--- tests/io/manipulatorsInput.cfa	(revision bf1cbde8549594a47893ee6d678e5552340e47a3)
+++ tests/io/manipulatorsInput.cfa	(revision 8cffa4f21ad8d447fa5f37d523e6acfb4906f3d0)
@@ -67,4 +67,12 @@
 		scanf( "%*8[abc]" );							printf( "12 %s\n", s );
 		scanf( "%*8[^abc]" );							printf( "13 %s\n", s );
+
+		int rc;
+		s[0] = 'q'; s[1] = '\0'; rc = 99;
+		rc = scanf( "%[abc]", s );						printf( "14 rc=%d, %s\n", rc, s );
+		s[0] = 'q'; s[1] = '\0'; rc = 99;
+		rc = scanf( "%[^u]", s );						printf( "15 rc=%d, %s\n", rc, s );
+		scanf( "%*[u]" );
+		scanf("\n");
 	}
 	{
@@ -85,4 +93,11 @@
 		sin | ignore( incl( "abc", wdi( sizeof(s), 8, s ) ) ); sout | "12" | s;
 		sin | ignore( excl( "abc", wdi( sizeof(s), 8, s ) ) ); sout | "13" | s;
+
+		s[0] = 'q'; s[1] = '\0';
+		sin | incl( "abc", wdi( sizeof(s), s ) );		sout | "14" | s;
+		s[0] = 'q'; s[1] = '\0';
+		sin | excl( "u", wdi( sizeof(s), s ) );			sout | "15" | s;
+		sin | skip( "u" );
+		sin | "\n";
 	}
     /* Keep harmonized with collections/string-istream-manip */
