Author: faridz
Date: Fri Nov 9 06:06:15 2007
New Revision: 593529
URL: http://svn.apache.org/viewvc?rev=593529&view=rev
Log:
2007-11-09 Farid Zaripov <[EMAIL PROTECTED]>
* 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/branches/4.2.x/tests/iostream/27.istream.fmat.arith.cpp
Modified:
incubator/stdcxx/branches/4.2.x/tests/iostream/27.istream.fmat.arith.cpp
URL:
http://svn.apache.org/viewvc/incubator/stdcxx/branches/4.2.x/tests/iostream/27.istream.fmat.arith.cpp?rev=593529&r1=593528&r2=593529&view=diff
==============================================================================
--- incubator/stdcxx/branches/4.2.x/tests/iostream/27.istream.fmat.arith.cpp
(original)
+++ incubator/stdcxx/branches/4.2.x/tests/iostream/27.istream.fmat.arith.cpp
Fri Nov 9 06:06:15 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 = "";