]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/20_util/ratio/operations/ops2.cc
Update copyright years in libstdc++-v3/
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 20_util / ratio / operations / ops2.cc
CommitLineData
4acedca1 1// { dg-options "-std=gnu++0x" }
a7543cfd 2// { dg-require-cstdint "" }
4acedca1
CF
3
4// 2008-07-03 Chris Fairles <chris.fairles@gmail.com>
5
aa118a03 6// Copyright (C) 2008-2014 Free Software Foundation, Inc.
4acedca1
CF
7//
8// This file is part of the GNU ISO C++ Library. This library is free
9// software; you can redistribute it and/or modify it under the
10// terms of the GNU General Public License as published by the
748086b7 11// Free Software Foundation; either version 3, or (at your option)
4acedca1
CF
12// any later version.
13
14// This library is distributed in the hope that it will be useful,
15// but WITHOUT ANY WARRANTY; without even the implied warranty of
16// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17// GNU General Public License for more details.
18
19// You should have received a copy of the GNU General Public License
748086b7
JJ
20// along with this library; see the file COPYING3. If not see
21// <http://www.gnu.org/licenses/>.
4acedca1
CF
22
23#include <ratio>
24#include <testsuite_hooks.h>
25
4acedca1
CF
26typedef std::ratio<1, INTMAX_MAX> one_over_max;
27typedef std::ratio<2, INTMAX_MAX> two_over_max;
28typedef std::ratio<INTMAX_MAX, 1> max_over_one;
29typedef std::ratio<INTMAX_MAX, 2> max_over_two;
30
31void
32test01()
33{
34 bool test __attribute__((unused)) = true;
35
36 std::ratio_add<one_over_max, one_over_max>::type r1;
37
38 VERIFY( r1.num == two_over_max::num);
39 VERIFY( r1.den == two_over_max::den);
40
41 std::ratio_add<
42 std::ratio<INTMAX_MAX / 2, INTMAX_MAX / 2>,
43 std::ratio<INTMAX_MAX / 2 , INTMAX_MAX / 2 + 1>>::type r2;
44
a7543cfd
PC
45 VERIFY( r2.num == INTMAX_MAX );
46 VERIFY( r2.den == (INTMAX_MAX / 2) + 1 );
4acedca1
CF
47}
48
49void
50test02()
51{
52 bool test __attribute__((unused)) = true;
53
54 std::ratio_subtract<one_over_max, one_over_max>::type r1;
55
56 VERIFY( r1.num == 0);
57 VERIFY( r1.den == 1);
58
59 std::ratio_subtract<
60 std::ratio<INTMAX_MAX / 2, INTMAX_MAX / 2>,
61 std::ratio<INTMAX_MAX / 2 , INTMAX_MAX / 2 + 1>>::type r2;
62
a7543cfd
PC
63 VERIFY( r2.num == 1 );
64 VERIFY( r2.den == (INTMAX_MAX / 2) + 1 );
4acedca1
CF
65}
66
4acedca1
CF
67int main()
68{
4acedca1
CF
69 test01();
70 test02();
4acedca1
CF
71 return 0;
72}