1.cc: Add VERIFY on the results.
authorPaolo Carlini <pcarlini@suse.de>
Thu, 19 Aug 2004 10:30:05 +0000 (10:30 +0000)
committerPaolo Carlini <paolo@gcc.gnu.org>
Thu, 19 Aug 2004 10:30:05 +0000 (10:30 +0000)
2004-08-19  Paolo Carlini  <pcarlini@suse.de>

* testsuite/22_locale/time_put/put/char/1.cc: Add VERIFY on the
results.
* testsuite/22_locale/time_put/put/char/2.cc: Likewise.
* testsuite/22_locale/time_put/put/char/3.cc: Likewise.
* testsuite/22_locale/time_put/put/char/4.cc: Likewise.
* testsuite/22_locale/time_put/put/wchar_t/1.cc: Likewise.
* testsuite/22_locale/time_put/put/wchar_t/2.cc: Likewise.
* testsuite/22_locale/time_put/put/wchar_t/3.cc: Likewise.
* testsuite/22_locale/time_put/put/wchar_t/4.cc: Likewise.

From-SVN: r86246

libstdc++-v3/ChangeLog
libstdc++-v3/testsuite/22_locale/time_put/put/char/1.cc
libstdc++-v3/testsuite/22_locale/time_put/put/char/2.cc
libstdc++-v3/testsuite/22_locale/time_put/put/char/3.cc
libstdc++-v3/testsuite/22_locale/time_put/put/char/4.cc
libstdc++-v3/testsuite/22_locale/time_put/put/wchar_t/1.cc
libstdc++-v3/testsuite/22_locale/time_put/put/wchar_t/2.cc
libstdc++-v3/testsuite/22_locale/time_put/put/wchar_t/3.cc
libstdc++-v3/testsuite/22_locale/time_put/put/wchar_t/4.cc

index 579bf095e305e363c58f806c68f3efd44090ca7d..e934d3bd88cdc0f17bebec65697f37c58a753827 100644 (file)
@@ -1,3 +1,15 @@
+2004-08-19  Paolo Carlini  <pcarlini@suse.de>
+
+       * testsuite/22_locale/time_put/put/char/1.cc: Add VERIFY on the
+       results.
+       * testsuite/22_locale/time_put/put/char/2.cc: Likewise.
+       * testsuite/22_locale/time_put/put/char/3.cc: Likewise.
+       * testsuite/22_locale/time_put/put/char/4.cc: Likewise.
+       * testsuite/22_locale/time_put/put/wchar_t/1.cc: Likewise.
+       * testsuite/22_locale/time_put/put/wchar_t/2.cc: Likewise.
+       * testsuite/22_locale/time_put/put/wchar_t/3.cc: Likewise.
+       * testsuite/22_locale/time_put/put/wchar_t/4.cc: Likewise.
 2004-08-19  Paolo Carlini  <pcarlini@suse.de>
 
        * config/abi/x86_64-linux-gnu/baseline_symbols.txt: Update to 3.4.0.
index a1785440128fcd9df9586d743ca6990a89660e32..2fe95341605ba41c8d2880ae48adc2b45a493c59 100644 (file)
@@ -55,15 +55,22 @@ void test01()
   oss.str(empty);
   iterator_type os_it21 = tim_put.put(oss.rdbuf(), oss, '*', &time1, 'x');
   string result21 = oss.str(); // "04/04/71"
+  VERIFY( result21 == "04/04/71" );
+
   oss.str(empty);
   iterator_type os_it22 = tim_put.put(oss.rdbuf(), oss, '*', &time1, 'X');
   string result22 = oss.str(); // "12:00:00"
+  VERIFY( result22 == "12:00:00" );
+  
   oss.str(empty);
   iterator_type os_it31 = tim_put.put(oss.rdbuf(), oss, '*', &time1, 'x', 'E');
   string result31 = oss.str(); // "04/04/71"
+  VERIFY( result31 == "04/04/71" );
+
   oss.str(empty);
   iterator_type os_it32 = tim_put.put(oss.rdbuf(), oss, '*', &time1, 'X', 'E');
   string result32 = oss.str(); // "12:00:00"
+  VERIFY( result32 == "12:00:00" );
 }
 
 int main()
index d7dad7feedb907780b0ecd31e668ecd3d2f1f8af..004bea81fff8eab8e96033e4a7befaf1cc257d83 100644 (file)
@@ -52,15 +52,22 @@ void test02()
   oss.str(empty); // "%d.%m.%Y"
   iterator_type os_it23 = tim_put.put(oss.rdbuf(), oss, '*', &time1, 'x');
   string result23 = oss.str(); // "04.04.1971"
+  VERIFY( result23 == "04.04.1971" );
+
   oss.str(empty); // "%T"
   iterator_type os_it24 = tim_put.put(oss.rdbuf(), oss, '*', &time1, 'X');
   string result24 = oss.str(); // "12:00:00"
+  VERIFY( result24 == "12:00:00" );
+
   oss.str(empty);
   iterator_type os_it33 = tim_put.put(oss.rdbuf(), oss, '*', &time1, 'x', 'E');
   string result33 = oss.str(); // "04.04.1971"
+  VERIFY( result33 == "04.04.1971" );
+
   oss.str(empty);
   iterator_type os_it34 = tim_put.put(oss.rdbuf(), oss, '*', &time1, 'X', 'E');
   string result34 = oss.str(); // "12:00:00"
+  VERIFY( result34 == "12:00:00" );
 }
 
 int main()
index 8124107499dadff144b1da2bb88da6ec91f06a17..3a46e83995d6f9d6a48c1cf662688ac35f44c573 100644 (file)
@@ -52,15 +52,22 @@ void test03()
   oss.str(empty); // "%A, %B %d, %Y"
   iterator_type os_it25 = tim_put.put(oss.rdbuf(), oss, '*', &time1, 'x');
   string result25 = oss.str(); // "Sunday, April 04, 1971"
+  VERIFY( result25 == "Sunday, April 04, 1971" );
+
   oss.str(empty); // "%I:%M:%S %Z"
   iterator_type os_it26 = tim_put.put(oss.rdbuf(), oss, '*', &time1, 'X');
-  string result26 = oss.str(); // "12:00:00 PST"
+  string result26 = oss.str(); // "12:00:00 CET"
+  VERIFY( result26 == "12:00:00 CET" );
+
   oss.str(empty);
   iterator_type os_it35 = tim_put.put(oss.rdbuf(), oss, '*', &time1, 'x', 'E');
   string result35 = oss.str(); // "Sunday, April 04, 1971"
+  VERIFY( result35 == "Sunday, April 04, 1971" );
+
   oss.str(empty);
   iterator_type os_it36 = tim_put.put(oss.rdbuf(), oss, '*', &time1, 'X', 'E');
-  string result36 = oss.str(); // "12:00:00 PST"
+  string result36 = oss.str(); // "12:00:00 CET"
+  VERIFY( result36 == "12:00:00 CET" );
 }
 
 int main()
index 7640fc0ed7d91f5cc8250f86cd2a208a847eb867..95f922cb2f12e085fee00d316172a2c3d3a9fc0e 100644 (file)
@@ -51,15 +51,22 @@ void test04()
   oss.str(empty); // "%d.%m.%Y"
   iterator_type os_it27 = tim_put.put(oss.rdbuf(), oss, '*', &time1, 'x');
   string result27 = oss.str(); // "04.04.1971"
+  VERIFY( result27 == "04.04.1971" );
+
   oss.str(empty); // "%T"
   iterator_type os_it28 = tim_put.put(oss.rdbuf(), oss, '*', &time1, 'X');
   string result28 = oss.str(); // "12:00:00"
+  VERIFY( result28 == "12:00:00" );
+
   oss.str(empty);
   iterator_type os_it37 = tim_put.put(oss.rdbuf(), oss, '*', &time1, 'x', 'E');
   string result37 = oss.str(); // "04.04.1971"
+  VERIFY( result37 == "04.04.1971" );
+
   oss.str(empty);
   iterator_type os_it38 = tim_put.put(oss.rdbuf(), oss, '*', &time1, 'X', 'E');
   string result38 = oss.str(); // "12:00:00"
+  VERIFY( result38 == "12:00:00" );
 }
 
 int main()
index e9a9e8580d86e11f78f59886b70c3ed862ef1b4e..549945447e30bfc5cf2f1b4b8e7b93b7003548b8 100644 (file)
@@ -55,15 +55,22 @@ void test01()
   oss.str(empty);
   iterator_type os_it21 = tim_put.put(oss.rdbuf(), oss, L'*', &time1, 'x');
   wstring result21 = oss.str(); // "04/04/71"
+  VERIFY( result21 == L"04/04/71" );
+
   oss.str(empty);
   iterator_type os_it22 = tim_put.put(oss.rdbuf(), oss, L'*', &time1, 'X');
   wstring result22 = oss.str(); // "12:00:00"
+  VERIFY( result22 == L"12:00:00" );
+
   oss.str(empty);
   iterator_type os_it31 = tim_put.put(oss.rdbuf(), oss, L'*', &time1, 'x', 'E');
   wstring result31 = oss.str(); // "04/04/71"
+  VERIFY( result31 == L"04/04/71" );
+
   oss.str(empty);
   iterator_type os_it32 = tim_put.put(oss.rdbuf(), oss, L'*', &time1, 'X', 'E');
   wstring result32 = oss.str(); // "12:00:00"
+  VERIFY( result32 == L"12:00:00" );
 }
 
 int main()
index a4a696892d77062b80e1943055f5083d73f68023..2250127379a14ff3b0b81378b728b1c09ae98bf3 100644 (file)
@@ -52,15 +52,22 @@ void test02()
   oss.str(empty); // "%d.%m.%Y"
   iterator_type os_it23 = tim_put.put(oss.rdbuf(), oss, L'*', &time1, 'x');
   wstring result23 = oss.str(); // "04.04.1971"
+  VERIFY( result23 == L"04.04.1971" );
+
   oss.str(empty); // "%T"
   iterator_type os_it24 = tim_put.put(oss.rdbuf(), oss, L'*', &time1, 'X');
   wstring result24 = oss.str(); // "12:00:00"
+  VERIFY( result24 == L"12:00:00" );
+
   oss.str(empty);
   iterator_type os_it33 = tim_put.put(oss.rdbuf(), oss, L'*', &time1, 'x', 'E');
   wstring result33 = oss.str(); // "04.04.1971"
+  VERIFY( result33 == L"04.04.1971" );
+
   oss.str(empty);
   iterator_type os_it34 = tim_put.put(oss.rdbuf(), oss, L'*', &time1, 'X', 'E');
   wstring result34 = oss.str(); // "12:00:00"
+  VERIFY( result34 == L"12:00:00" );
 }
 
 int main()
index a95248ed327ca61c98035c193e2ec9948ee938d5..72c702c5fb6523fd2ca01f97e2c59c1938cdc9ff 100644 (file)
@@ -52,15 +52,22 @@ void test03()
   oss.str(empty); // "%A, %B %d, %Y"
   iterator_type os_it25 = tim_put.put(oss.rdbuf(), oss, L'*', &time1, 'x');
   wstring result25 = oss.str(); // "Sunday, April 04, 1971"
+  VERIFY( result25 == L"Sunday, April 04, 1971" );
+
   oss.str(empty); // "%I:%M:%S %Z"
   iterator_type os_it26 = tim_put.put(oss.rdbuf(), oss, L'*', &time1, 'X');
-  wstring result26 = oss.str(); // "12:00:00 PST"
+  wstring result26 = oss.str(); // "12:00:00 CET"
+  VERIFY( result26 == L"12:00:00 CET" );
+
   oss.str(empty);
   iterator_type os_it35 = tim_put.put(oss.rdbuf(), oss, L'*', &time1, 'x', 'E');
   wstring result35 = oss.str(); // "Sunday, April 04, 1971"
+  VERIFY( result35 == L"Sunday, April 04, 1971" );
+
   oss.str(empty);
   iterator_type os_it36 = tim_put.put(oss.rdbuf(), oss, L'*', &time1, 'X', 'E');
-  wstring result36 = oss.str(); // "12:00:00 PST"
+  wstring result36 = oss.str(); // "12:00:00 CET"
+  VERIFY( result36 == L"12:00:00 CET" );
 }
 
 int main()
index 84bd775642964a4d13bc76bd88b4c297737aab9b..aec5c0a6eb6ebd54dbc867106dbef901e34c48a0 100644 (file)
@@ -51,15 +51,22 @@ void test04()
   oss.str(empty); // "%d.%m.%Y"
   iterator_type os_it27 = tim_put.put(oss.rdbuf(), oss, L'*', &time1, 'x');
   wstring result27 = oss.str(); // "04.04.1971"
+  VERIFY( result27 == L"04.04.1971" );
+
   oss.str(empty); // "%T"
   iterator_type os_it28 = tim_put.put(oss.rdbuf(), oss, L'*', &time1, 'X');
   wstring result28 = oss.str(); // "12:00:00"
+  VERIFY( result28 == L"12:00:00" );
+
   oss.str(empty);
   iterator_type os_it37 = tim_put.put(oss.rdbuf(), oss, L'*', &time1, 'x', 'E');
   wstring result37 = oss.str(); // "04.04.1971"
+  VERIFY( result37 == L"04.04.1971" );
+
   oss.str(empty);
   iterator_type os_it38 = tim_put.put(oss.rdbuf(), oss, L'*', &time1, 'X', 'E');
   wstring result38 = oss.str(); // "12:00:00"
+  VERIFY( result38 == L"12:00:00" );
 }
 
 int main()