106 lines
3.7 KiB
C++
106 lines
3.7 KiB
C++
/*
|
|
Copyright (c) 2014, Randolph Voorhies, Shane Grant
|
|
All rights reserved.
|
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
modification, are permitted provided that the following conditions are met:
|
|
* Redistributions of source code must retain the above copyright
|
|
notice, this list of conditions and the following disclaimer.
|
|
* Redistributions in binary form must reproduce the above copyright
|
|
notice, this list of conditions and the following disclaimer in the
|
|
documentation and/or other materials provided with the distribution.
|
|
* Neither the name of cereal nor the
|
|
names of its contributors may be used to endorse or promote products
|
|
derived from this software without specific prior written permission.
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
|
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
DISCLAIMED. IN NO EVENT SHALL RANDOLPH VOORHIES AND SHANE GRANT BE LIABLE FOR ANY
|
|
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
|
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
*/
|
|
#ifndef CEREAL_TEST_CHRONO_H_
|
|
#define CEREAL_TEST_CHRONO_H_
|
|
|
|
#include "common.hpp"
|
|
|
|
template <class IArchive, class OArchive> inline
|
|
void test_chrono()
|
|
{
|
|
for(int ii=0; ii<100; ++ii)
|
|
{
|
|
auto o_timePoint1 = std::chrono::system_clock::now();
|
|
#ifndef CEREAL_OLDER_GCC
|
|
auto o_timePoint2 = std::chrono::steady_clock::now();
|
|
#endif // CEREAL_OLDER_GCC
|
|
auto o_timePoint3 = std::chrono::high_resolution_clock::now();
|
|
|
|
auto o_duration1 = std::chrono::system_clock::now() - o_timePoint1;
|
|
#ifndef CEREAL_OLDER_GCC
|
|
auto o_duration2 = std::chrono::steady_clock::now() - o_timePoint2;
|
|
#endif // CEREAL_OLDER_GCC
|
|
auto o_duration3 = std::chrono::high_resolution_clock::now() - o_timePoint3;
|
|
|
|
std::ostringstream os;
|
|
{
|
|
OArchive oar(os);
|
|
|
|
oar(o_timePoint1);
|
|
#ifndef CEREAL_OLDER_GCC
|
|
oar(o_timePoint2);
|
|
#endif // CEREAL_OLDER_GCC
|
|
oar(o_timePoint3);
|
|
oar(o_duration1);
|
|
#ifndef CEREAL_OLDER_GCC
|
|
oar(o_duration2);
|
|
#endif // CEREAL_OLDER_GCC
|
|
oar(o_duration3);
|
|
}
|
|
|
|
decltype(o_timePoint1) i_timePoint1;
|
|
#ifndef CEREAL_OLDER_GCC
|
|
decltype(o_timePoint2) i_timePoint2;
|
|
#endif // CEREAL_OLDER_GCC
|
|
decltype(o_timePoint3) i_timePoint3;
|
|
decltype(o_duration1) i_duration1;
|
|
#ifndef CEREAL_OLDER_GCC
|
|
decltype(o_duration2) i_duration2;
|
|
#endif // CEREAL_OLDER_GCC
|
|
decltype(o_duration3) i_duration3;
|
|
|
|
std::istringstream is(os.str());
|
|
{
|
|
IArchive iar(is);
|
|
|
|
iar(i_timePoint1);
|
|
#ifndef CEREAL_OLDER_GCC
|
|
iar(i_timePoint2);
|
|
#endif // CEREAL_OLDER_GCC
|
|
iar(i_timePoint3);
|
|
iar(i_duration1);
|
|
#ifndef CEREAL_OLDER_GCC
|
|
iar(i_duration2);
|
|
#endif // CEREAL_OLDER_GCC
|
|
iar(i_duration3);
|
|
}
|
|
|
|
CHECK_EQ( o_timePoint1, i_timePoint1 );
|
|
#ifndef CEREAL_OLDER_GCC
|
|
CHECK_EQ( o_timePoint2, i_timePoint2 );
|
|
#endif // CEREAL_OLDER_GCC
|
|
CHECK_EQ( o_timePoint3, i_timePoint3 );
|
|
CHECK_EQ( o_duration1, i_duration1 );
|
|
#ifndef CEREAL_OLDER_GCC
|
|
CHECK_EQ( o_duration2, i_duration2 );
|
|
#endif // CEREAL_OLDER_GCC
|
|
CHECK_EQ( o_duration3, i_duration3 );
|
|
}
|
|
}
|
|
|
|
#endif // CEREAL_TEST_CHRONO_H_
|