You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@stdcxx.apache.org by fa...@apache.org on 2007/11/09 15:15:48 UTC

svn commit: r593532 - /incubator/stdcxx/trunk/tests/iostream/27.istream.fmat.arith.cpp

Author: faridz
Date: Fri Nov  9 06:15:47 2007
New Revision: 593532

URL: http://svn.apache.org/viewvc?rev=593532&view=rev
Log:
2007-11-09 Farid Zaripov <fa...@epam.com>

	Merged r593529 from branches/4.2.x with a fix for STDCXX-658
	* 27.istream.fmat.arith.cpp (test_llong): Corrected typename "long"
	to "long long".
	(test_ullong): Corrected typename "long long" to "unsigned long long".

Modified:
    incubator/stdcxx/trunk/tests/iostream/27.istream.fmat.arith.cpp

Modified: incubator/stdcxx/trunk/tests/iostream/27.istream.fmat.arith.cpp
URL: http://svn.apache.org/viewvc/incubator/stdcxx/trunk/tests/iostream/27.istream.fmat.arith.cpp?rev=593532&r1=593531&r2=593532&view=diff
==============================================================================
--- incubator/stdcxx/trunk/tests/iostream/27.istream.fmat.arith.cpp (original)
+++ incubator/stdcxx/trunk/tests/iostream/27.istream.fmat.arith.cpp Fri Nov  9 06:15:47 2007
@@ -1025,8 +1025,8 @@
 {
     info (cname, tname, "long long");
 
-    test_extractor ((CharT*)0, (Traits*)0, (long*)0,
-                    cname, tname, "long", "%lli");
+    test_extractor ((CharT*)0, (Traits*)0, (long long*)0,
+                    cname, tname, "long long", "%lli");
 
 #define TEST_LLONG(ss, fl, is, ex, ee, es, ne, fw, iv, ev)   \
     TEST (long long, "%lli", ss, fl, is, ex, ee, es, ne, fw, iv, ev)
@@ -1082,10 +1082,10 @@
     info (cname, tname, "unsigned long long");
 
     test_extractor ((CharT*)0, (Traits*)0, (unsigned long long*)0,
-                     cname, tname, "unsigned long long", "%llu");
+                    cname, tname, "unsigned long long", "%llu");
 
 #define TEST_ULLONG(ss, fl, is, ex, ee, es, ne, fw, iv, ev)   \
-    TEST (long long, "%llu", ss, fl, is, ex, ee, es, ne, fw, iv, ev)
+    TEST (unsigned long long, "%llu", ss, fl, is, ex, ee, es, ne, fw, iv, ev)
 
     LocaleData locale_data = { 0, -1, -1, 0, 0, 0 };
     locale_data.whitespace = "";