blob: 034fc4e7df99d1c71c6bf67e76ec1438c49c421f [file] [log] [blame]
//===----------------------------------------------------------------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is dual licensed under the MIT and the University of Illinois Open
// Source Licenses. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
// Adaptation to Boost of the libcxx
// Copyright 2010 Vicente J. Botet Escriba
// Distributed under the Boost Software License, Version 1.0.
// See http://www.boost.org/LICENSE_1_0.txt
#include <boost/chrono/duration.hpp>
#include <boost/detail/lightweight_test.hpp>
#include <libs/chrono/test/rep.h>
template <class D>
void check_max()
{
typedef typename D::rep Rep;
Rep max_rep = (boost::chrono::duration_values<Rep>::max)();
BOOST_TEST((D::max)().count() == max_rep);
}
template <class D>
void check_min()
{
typedef typename D::rep Rep;
Rep min_rep = (boost::chrono::duration_values<Rep>::min)();
BOOST_TEST((D::min)().count() == min_rep);
}
template <class D>
void check_zero()
{
typedef typename D::rep Rep;
Rep zero_rep = boost::chrono::duration_values<Rep>::zero();
BOOST_TEST(D::zero().count() == zero_rep);
}
int main()
{
check_max<boost::chrono::duration<int> >();
check_max<boost::chrono::duration<Rep> >();
check_min<boost::chrono::duration<int> >();
check_min<boost::chrono::duration<Rep> >();
check_zero<boost::chrono::duration<int> >();
check_zero<boost::chrono::duration<Rep> >();
return boost::report_errors();
}