|
Boost-Commit : |
Subject: [Boost-commit] svn:boost r80126 - in trunk/libs/chrono/test: duration stopwatch time_point traits
From: vicente.botet_at_[hidden]
Date: 2012-08-21 17:30:52
Author: viboes
Date: 2012-08-21 17:30:50 EDT (Tue, 21 Aug 2012)
New Revision: 80126
URL: http://svn.boost.org/trac/boost/changeset/80126
Log:
Chrono: remove includes using lib/chrono
Text files modified:
trunk/libs/chrono/test/duration/constructor_pass.cpp | 2 +-
trunk/libs/chrono/test/duration/duration_values_pass.cpp | 2 +-
trunk/libs/chrono/test/stopwatch/basic_stopwatch_laps_accumulator_set_pass.cpp | 2 +-
trunk/libs/chrono/test/stopwatch/basic_stopwatch_laps_container_pass.cpp | 2 +-
trunk/libs/chrono/test/stopwatch/basic_stopwatch_last_lap_pass.cpp | 2 +-
trunk/libs/chrono/test/stopwatch/basic_stopwatch_pass.cpp | 2 +-
trunk/libs/chrono/test/stopwatch/basic_stopwatch_reporter_laps_accumulator_set_pass.cpp | 2 +-
trunk/libs/chrono/test/stopwatch/basic_stopwatch_reporter_pass.cpp | 2 +-
trunk/libs/chrono/test/stopwatch/laps_stopclock_laps_accumulator_set_pass.cpp | 2 +-
trunk/libs/chrono/test/stopwatch/laps_stopclock_pass.cpp | 2 +-
trunk/libs/chrono/test/stopwatch/simple_stopclock_pass.cpp | 2 +-
trunk/libs/chrono/test/stopwatch/simple_stopwatch_pass.cpp | 2 +-
trunk/libs/chrono/test/stopwatch/simple_stopwatch_reporter_pass.cpp | 2 +-
trunk/libs/chrono/test/stopwatch/suspendable_stopwatch_pass.cpp | 2 +-
trunk/libs/chrono/test/time_point/constructor_pass.cpp | 2 +-
trunk/libs/chrono/test/traits/duration_values_pass.cpp | 4 ++--
16 files changed, 17 insertions(+), 17 deletions(-)
Modified: trunk/libs/chrono/test/duration/constructor_pass.cpp
==============================================================================
--- trunk/libs/chrono/test/duration/constructor_pass.cpp (original)
+++ trunk/libs/chrono/test/duration/constructor_pass.cpp 2012-08-21 17:30:50 EDT (Tue, 21 Aug 2012)
@@ -16,7 +16,7 @@
#include <boost/detail/lightweight_test.hpp>
-#include <libs/chrono/test/rep.h>
+#include "../rep.h"
#include <iostream>
#ifdef BOOST_NO_CONSTEXPR
Modified: trunk/libs/chrono/test/duration/duration_values_pass.cpp
==============================================================================
--- trunk/libs/chrono/test/duration/duration_values_pass.cpp (original)
+++ trunk/libs/chrono/test/duration/duration_values_pass.cpp 2012-08-21 17:30:50 EDT (Tue, 21 Aug 2012)
@@ -14,7 +14,7 @@
#include <boost/chrono/duration.hpp>
#include <boost/detail/lightweight_test.hpp>
-#include <libs/chrono/test/rep.h>
+#include "../rep.h"
#ifdef BOOST_NO_CONSTEXPR
#define BOOST_CONSTEXPR_ASSERT(C) BOOST_TEST(C)
#else
Modified: trunk/libs/chrono/test/stopwatch/basic_stopwatch_laps_accumulator_set_pass.cpp
==============================================================================
--- trunk/libs/chrono/test/stopwatch/basic_stopwatch_laps_accumulator_set_pass.cpp (original)
+++ trunk/libs/chrono/test/stopwatch/basic_stopwatch_laps_accumulator_set_pass.cpp 2012-08-21 17:30:50 EDT (Tue, 21 Aug 2012)
@@ -8,7 +8,7 @@
#include <boost/type_traits/is_same.hpp>
#include <boost/chrono/stopwatches/stopwatch.hpp>
#include <boost/chrono/stopwatches/collectors/laps_accumulator_set.hpp>
-#include <libs/chrono/test/cycle_count.hpp>
+#include "../cycle_count.hpp"
#include <boost/detail/lightweight_test.hpp>
#if !defined(BOOST_NO_STATIC_ASSERT)
Modified: trunk/libs/chrono/test/stopwatch/basic_stopwatch_laps_container_pass.cpp
==============================================================================
--- trunk/libs/chrono/test/stopwatch/basic_stopwatch_laps_container_pass.cpp (original)
+++ trunk/libs/chrono/test/stopwatch/basic_stopwatch_laps_container_pass.cpp 2012-08-21 17:30:50 EDT (Tue, 21 Aug 2012)
@@ -8,7 +8,7 @@
#include <boost/type_traits/is_same.hpp>
#include <boost/chrono/stopwatches/stopwatch.hpp>
#include <boost/chrono/stopwatches/collectors/laps_sequence_container.hpp>
-#include <libs/chrono/test/cycle_count.hpp>
+#include "../cycle_count.hpp"
#include <boost/detail/lightweight_test.hpp>
#if !defined(BOOST_NO_STATIC_ASSERT)
Modified: trunk/libs/chrono/test/stopwatch/basic_stopwatch_last_lap_pass.cpp
==============================================================================
--- trunk/libs/chrono/test/stopwatch/basic_stopwatch_last_lap_pass.cpp (original)
+++ trunk/libs/chrono/test/stopwatch/basic_stopwatch_last_lap_pass.cpp 2012-08-21 17:30:50 EDT (Tue, 21 Aug 2012)
@@ -8,7 +8,7 @@
#include <boost/type_traits/is_same.hpp>
#include <boost/chrono/stopwatches/stopwatch.hpp>
#include <boost/chrono/stopwatches/collectors/last_lap.hpp>
-#include <libs/chrono/test/cycle_count.hpp>
+#include "../cycle_count.hpp"
#include <boost/detail/lightweight_test.hpp>
#if !defined(BOOST_NO_STATIC_ASSERT)
Modified: trunk/libs/chrono/test/stopwatch/basic_stopwatch_pass.cpp
==============================================================================
--- trunk/libs/chrono/test/stopwatch/basic_stopwatch_pass.cpp (original)
+++ trunk/libs/chrono/test/stopwatch/basic_stopwatch_pass.cpp 2012-08-21 17:30:50 EDT (Tue, 21 Aug 2012)
@@ -7,7 +7,7 @@
#include <iostream>
#include <boost/type_traits/is_same.hpp>
#include <boost/chrono/stopwatches/stopwatch.hpp>
-#include <libs/chrono/test/cycle_count.hpp>
+#include "../cycle_count.hpp"
#include <boost/detail/lightweight_test.hpp>
#if !defined(BOOST_NO_STATIC_ASSERT)
Modified: trunk/libs/chrono/test/stopwatch/basic_stopwatch_reporter_laps_accumulator_set_pass.cpp
==============================================================================
--- trunk/libs/chrono/test/stopwatch/basic_stopwatch_reporter_laps_accumulator_set_pass.cpp (original)
+++ trunk/libs/chrono/test/stopwatch/basic_stopwatch_reporter_laps_accumulator_set_pass.cpp 2012-08-21 17:30:50 EDT (Tue, 21 Aug 2012)
@@ -7,7 +7,7 @@
#include <iostream>
#include <boost/type_traits/is_same.hpp>
#include <boost/chrono/stopwatches/stopwatch.hpp>
-#include <libs/chrono/test/cycle_count.hpp>
+#include "../cycle_count.hpp"
#include <boost/chrono/stopwatches/reporters/stopwatch_reporter.hpp>
#include <boost/chrono/stopwatches/reporters/system_default_formatter.hpp>
#include <boost/chrono/stopwatches/reporters/laps_accumulator_set_stopwatch_default_formatter.hpp>
Modified: trunk/libs/chrono/test/stopwatch/basic_stopwatch_reporter_pass.cpp
==============================================================================
--- trunk/libs/chrono/test/stopwatch/basic_stopwatch_reporter_pass.cpp (original)
+++ trunk/libs/chrono/test/stopwatch/basic_stopwatch_reporter_pass.cpp 2012-08-21 17:30:50 EDT (Tue, 21 Aug 2012)
@@ -7,7 +7,7 @@
#include <iostream>
#include <boost/type_traits/is_same.hpp>
#include <boost/chrono/stopwatches/stopwatch.hpp>
-#include <libs/chrono/test/cycle_count.hpp>
+#include "../cycle_count.hpp"
#include <boost/chrono/stopwatches/reporters/stopwatch_reporter.hpp>
#include <boost/chrono/stopwatches/reporters/system_default_formatter.hpp>
Modified: trunk/libs/chrono/test/stopwatch/laps_stopclock_laps_accumulator_set_pass.cpp
==============================================================================
--- trunk/libs/chrono/test/stopwatch/laps_stopclock_laps_accumulator_set_pass.cpp (original)
+++ trunk/libs/chrono/test/stopwatch/laps_stopclock_laps_accumulator_set_pass.cpp 2012-08-21 17:30:50 EDT (Tue, 21 Aug 2012)
@@ -7,7 +7,7 @@
#include <iostream>
#include <boost/type_traits/is_same.hpp>
#include <boost/chrono/stopwatches/reporters/stopclock.hpp>
-#include <libs/chrono/test/cycle_count.hpp>
+#include "../cycle_count.hpp"
#include <boost/chrono/stopwatches/reporters/system_default_formatter.hpp>
#include <boost/chrono/stopwatches/collectors/laps_accumulator_set.hpp>
Modified: trunk/libs/chrono/test/stopwatch/laps_stopclock_pass.cpp
==============================================================================
--- trunk/libs/chrono/test/stopwatch/laps_stopclock_pass.cpp (original)
+++ trunk/libs/chrono/test/stopwatch/laps_stopclock_pass.cpp 2012-08-21 17:30:50 EDT (Tue, 21 Aug 2012)
@@ -7,7 +7,7 @@
#include <iostream>
#include <boost/type_traits/is_same.hpp>
#include <boost/chrono/stopwatches/reporters/stopclock.hpp>
-#include <libs/chrono/test/cycle_count.hpp>
+#include "../cycle_count.hpp"
#include <boost/chrono/stopwatches/reporters/system_default_formatter.hpp>
#include <boost/chrono/chrono_io.hpp>
Modified: trunk/libs/chrono/test/stopwatch/simple_stopclock_pass.cpp
==============================================================================
--- trunk/libs/chrono/test/stopwatch/simple_stopclock_pass.cpp (original)
+++ trunk/libs/chrono/test/stopwatch/simple_stopclock_pass.cpp 2012-08-21 17:30:50 EDT (Tue, 21 Aug 2012)
@@ -7,7 +7,7 @@
#include <iostream>
#include <boost/type_traits/is_same.hpp>
#include <boost/chrono/stopwatches/reporters/strict_stopclock.hpp>
-#include <libs/chrono/test/cycle_count.hpp>
+#include "../cycle_count.hpp"
#include <boost/chrono/stopwatches/reporters/system_default_formatter.hpp>
#include <boost/chrono/chrono_io.hpp>
Modified: trunk/libs/chrono/test/stopwatch/simple_stopwatch_pass.cpp
==============================================================================
--- trunk/libs/chrono/test/stopwatch/simple_stopwatch_pass.cpp (original)
+++ trunk/libs/chrono/test/stopwatch/simple_stopwatch_pass.cpp 2012-08-21 17:30:50 EDT (Tue, 21 Aug 2012)
@@ -7,7 +7,7 @@
#include <iostream>
#include <boost/type_traits/is_same.hpp>
#include <boost/chrono/stopwatches/strict_stopwatch.hpp>
-#include <libs/chrono/test/cycle_count.hpp>
+#include "../cycle_count.hpp"
#include <boost/detail/lightweight_test.hpp>
#if !defined(BOOST_NO_STATIC_ASSERT)
Modified: trunk/libs/chrono/test/stopwatch/simple_stopwatch_reporter_pass.cpp
==============================================================================
--- trunk/libs/chrono/test/stopwatch/simple_stopwatch_reporter_pass.cpp (original)
+++ trunk/libs/chrono/test/stopwatch/simple_stopwatch_reporter_pass.cpp 2012-08-21 17:30:50 EDT (Tue, 21 Aug 2012)
@@ -7,7 +7,7 @@
#include <iostream>
#include <boost/type_traits/is_same.hpp>
#include <boost/chrono/stopwatches/strict_stopwatch.hpp>
-#include <libs/chrono/test/cycle_count.hpp>
+#include "../cycle_count.hpp"
#include <boost/chrono/stopwatches/reporters/stopwatch_reporter.hpp>
#include <boost/chrono/stopwatches/reporters/system_default_formatter.hpp>
Modified: trunk/libs/chrono/test/stopwatch/suspendable_stopwatch_pass.cpp
==============================================================================
--- trunk/libs/chrono/test/stopwatch/suspendable_stopwatch_pass.cpp (original)
+++ trunk/libs/chrono/test/stopwatch/suspendable_stopwatch_pass.cpp 2012-08-21 17:30:50 EDT (Tue, 21 Aug 2012)
@@ -7,7 +7,7 @@
#include <iostream>
#include <boost/type_traits/is_same.hpp>
#include <boost/chrono/stopwatches/suspendable_stopwatch.hpp>
-#include <libs/chrono/test/cycle_count.hpp>
+#include "../cycle_count.hpp"
#include <boost/detail/lightweight_test.hpp>
#if !defined(BOOST_NO_STATIC_ASSERT)
Modified: trunk/libs/chrono/test/time_point/constructor_pass.cpp
==============================================================================
--- trunk/libs/chrono/test/time_point/constructor_pass.cpp (original)
+++ trunk/libs/chrono/test/time_point/constructor_pass.cpp 2012-08-21 17:30:50 EDT (Tue, 21 Aug 2012)
@@ -13,7 +13,7 @@
#include <boost/chrono/chrono.hpp>
#include <boost/detail/lightweight_test.hpp>
-#include <libs/chrono/test/rep.h>
+#include "../rep.h"
#ifdef BOOST_NO_CONSTEXPR
#define BOOST_CONSTEXPR_ASSERT(C) BOOST_TEST(C)
#else
Modified: trunk/libs/chrono/test/traits/duration_values_pass.cpp
==============================================================================
--- trunk/libs/chrono/test/traits/duration_values_pass.cpp (original)
+++ trunk/libs/chrono/test/traits/duration_values_pass.cpp 2012-08-21 17:30:50 EDT (Tue, 21 Aug 2012)
@@ -16,7 +16,7 @@
#include <limits>
#include <boost/detail/lightweight_test.hpp>
-#include <libs/chrono/test/rep.h>
+#include "../rep.h"
int main()
{
@@ -26,7 +26,7 @@
-(std::numeric_limits<double>::max)());
BOOST_TEST((boost::chrono::duration_values<Rep>::min)() ==
(std::numeric_limits<Rep>::min)());
-
+
BOOST_TEST((boost::chrono::duration_values<int>::max)() ==
(std::numeric_limits<int>::max)());
BOOST_TEST((boost::chrono::duration_values<double>::max)() ==
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