Author: faridz
Date: Tue Aug 21 06:10:47 2007
New Revision: 568115
URL: http://svn.apache.org/viewvc?rev=568115&view=rev
Log:
2007-08-21 Farid Zaripov <[EMAIL PROTECTED]>
* 0.char.cpp (test_rw_widen): Added missing parameter in rw_assert().
(test_rw_narrow): The same.
Modified:
incubator/stdcxx/trunk/tests/self/0.char.cpp
Modified: incubator/stdcxx/trunk/tests/self/0.char.cpp
URL:
http://svn.apache.org/viewvc/incubator/stdcxx/trunk/tests/self/0.char.cpp?rev=568115&r1=568114&r2=568115&view=diff
==============================================================================
--- incubator/stdcxx/trunk/tests/self/0.char.cpp (original)
+++ incubator/stdcxx/trunk/tests/self/0.char.cpp Tue Aug 21 06:10:47 2007
@@ -394,7 +394,7 @@
rw_assert (cdst == ret, 0, __LINE__,
"rw_widen(char*, %{#s}%{?}, %zu%{;})",
- src, i < nsrc);
+ src, i < nsrc, i);
rw_assert (0 == memcmp (cdst, src, i) && '\0' == cdst [i],
0, __LINE__,
@@ -638,7 +638,7 @@
rw_assert (cdst == ret, 0, __LINE__,
"rw_narrow(char*, %{#s}%{?}, %zu%{;})",
- src, i < nsrc);
+ src, i < nsrc, i);
rw_assert (0 == memcmp (cdst, src, i) && '\0' == cdst [i],
0, __LINE__,