Commit 3eb6b2b0 by Jakub Jelinek Committed by Jakub Jelinek

num_put_members_char.cc (test01): Swap size and decimal_point arguments of find.

	* testsuite/22_locale/num_put_members_char.cc (test01): Swap size
	and decimal_point arguments of find.
	* testsuite/22_locale/num_put_members_wchar_t.cc (test01): Likewise.

From-SVN: r58454
parent 34bb030a
2002-10-23 Jakub Jelinek <jakub@redhat.com>
* testsuite/22_locale/num_put_members_char.cc (test01): Swap size
and decimal_point arguments of find.
* testsuite/22_locale/num_put_members_wchar_t.cc (test01): Likewise.
2002-10-22 Jakub Jelinek <jakub@redhat.com>
* Makefile.am (check-abi, new-abi-baseline): Use @glibcpp_srcdir@
......
......@@ -202,8 +202,8 @@ void test01()
result1 = oss.str();
// No grouping characters.
VERIFY( !char_traits<char>::find(result1.c_str(),
numpunct_de.decimal_point(),
result1.size()) );
result1.size(),
numpunct_de.decimal_point()) );
// Should contain an 'x'.
VERIFY( result1.find('x') == 1 );
......
......@@ -203,8 +203,8 @@ void test01()
result1 = oss.str();
// No grouping characters.
VERIFY( !char_traits<wchar_t>::find(result1.c_str(),
numpunct_de.decimal_point(),
result1.size()) );
result1.size(),
numpunct_de.decimal_point()) );
// Should contain an 'x'.
VERIFY( result1.find(L'x') == 1 );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment