Commit b8505828 by Benjamin Kosnik Committed by Benjamin Kosnik

3.cc (test03): Don't check timezone.


2004-08-19  Benjamin Kosnik  <bkoz@redhat.com>

	* testsuite/22_locale/time_put/put/char/3.cc (test03): Don't check
	timezone.
	* testsuite/22_locale/time_put/put/wchar_t/3.cc (test03): Same.

From-SVN: r86271
parent d5bfecf2
2004-08-19 Benjamin Kosnik <bkoz@redhat.com>
* testsuite/22_locale/time_put/put/char/3.cc (test03): Don't check
timezone.
* testsuite/22_locale/time_put/put/wchar_t/3.cc (test03): Same.
2004-08-19 Paolo Carlini <pcarlini@suse.de> 2004-08-19 Paolo Carlini <pcarlini@suse.de>
* testsuite/performance/20_util/allocator/insert.cc: For std::map * testsuite/performance/20_util/allocator/insert.cc: For std::map
......
...@@ -56,8 +56,8 @@ void test03() ...@@ -56,8 +56,8 @@ void test03()
oss.str(empty); // "%I:%M:%S %Z" oss.str(empty); // "%I:%M:%S %Z"
iterator_type os_it26 = tim_put.put(oss.rdbuf(), oss, '*', &time1, 'X'); iterator_type os_it26 = tim_put.put(oss.rdbuf(), oss, '*', &time1, 'X');
string result26 = oss.str(); // "12:00:00 CET" string result26 = oss.str(); // "12:00:00 CET" or whatever timezone
VERIFY( result26 == "12:00:00 CET" ); VERIFY( result26.find("12:00:00") != string::npos );
oss.str(empty); oss.str(empty);
iterator_type os_it35 = tim_put.put(oss.rdbuf(), oss, '*', &time1, 'x', 'E'); iterator_type os_it35 = tim_put.put(oss.rdbuf(), oss, '*', &time1, 'x', 'E');
...@@ -67,7 +67,7 @@ void test03() ...@@ -67,7 +67,7 @@ void test03()
oss.str(empty); oss.str(empty);
iterator_type os_it36 = tim_put.put(oss.rdbuf(), oss, '*', &time1, 'X', 'E'); iterator_type os_it36 = tim_put.put(oss.rdbuf(), oss, '*', &time1, 'X', 'E');
string result36 = oss.str(); // "12:00:00 CET" string result36 = oss.str(); // "12:00:00 CET"
VERIFY( result36 == "12:00:00 CET" ); VERIFY( result36.find("12:00:00") != string::npos );
} }
int main() int main()
......
...@@ -56,8 +56,8 @@ void test03() ...@@ -56,8 +56,8 @@ void test03()
oss.str(empty); // "%I:%M:%S %Z" oss.str(empty); // "%I:%M:%S %Z"
iterator_type os_it26 = tim_put.put(oss.rdbuf(), oss, L'*', &time1, 'X'); iterator_type os_it26 = tim_put.put(oss.rdbuf(), oss, L'*', &time1, 'X');
wstring result26 = oss.str(); // "12:00:00 CET" wstring result26 = oss.str(); // "12:00:00 CET" or whatever timezone
VERIFY( result26 == L"12:00:00 CET" ); VERIFY( result26.find(L"12:00:00") != wstring::npos );
oss.str(empty); oss.str(empty);
iterator_type os_it35 = tim_put.put(oss.rdbuf(), oss, L'*', &time1, 'x', 'E'); iterator_type os_it35 = tim_put.put(oss.rdbuf(), oss, L'*', &time1, 'x', 'E');
...@@ -67,7 +67,8 @@ void test03() ...@@ -67,7 +67,8 @@ void test03()
oss.str(empty); oss.str(empty);
iterator_type os_it36 = tim_put.put(oss.rdbuf(), oss, L'*', &time1, 'X', 'E'); iterator_type os_it36 = tim_put.put(oss.rdbuf(), oss, L'*', &time1, 'X', 'E');
wstring result36 = oss.str(); // "12:00:00 CET" wstring result36 = oss.str(); // "12:00:00 CET"
VERIFY( result36 == L"12:00:00 CET" ); VERIFY( result36.find(L"12:00:00") != wstring::npos );
} }
int main() int main()
......
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