Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r86357 - trunk/libs/chrono/test/io
From: vicente.botet_at_[hidden]
Date: 2013-10-18 14:54:15


Author: viboes
Date: 2013-10-18 14:54:14 EDT (Fri, 18 Oct 2013)
New Revision: 86357
URL: http://svn.boost.org/trac/boost/changeset/86357

Log:
Chrono: don't run test_good_utc_fmt_system_clock on windows as this is blocking the regression tests.

Text files modified:
   trunk/libs/chrono/test/io/time_point_output.cpp | 4 ++--
   1 files changed, 2 insertions(+), 2 deletions(-)

Modified: trunk/libs/chrono/test/io/time_point_output.cpp
==============================================================================
--- trunk/libs/chrono/test/io/time_point_output.cpp Fri Oct 18 13:32:46 2013 (r86356)
+++ trunk/libs/chrono/test/io/time_point_output.cpp 2013-10-18 14:54:14 EDT (Fri, 18 Oct 2013) (r86357)
@@ -173,12 +173,12 @@
 
   test_good_utc_fmt_system_clock("1970-01-01 02:00:00", "%Y-%m-%d %H:%M:%S", hours(2));
   test_good_utc_fmt_system_clock("1970-01-01 02", "%Y-%m-%d %H", hours(2));
-
+#if ! defined(BOOST_CHRONO_WINDOWS_API)
   test_good_utc_fmt_system_clock ("1970-01-01 02:00:00", "%Y-%m-%d %T", hours(2));
   test_good_utc_fmt_system_clock ("1970-01-01 02:00", "%Y-%m-%d %R", hours(2));
   test_good_utc_fmt_system_clock ("% 1970-01-01 02:00", "%% %Y-%m-%d %R", hours(2));
   test_good_utc_fmt_system_clock ("1970-01-01 02:00 Thursday January", "%Y-%m-%d %R %A %B", hours(2));
-
+#endif
 }
 
 void test_gmtime(std::time_t t)


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk