summaryrefslogtreecommitdiff
path: root/libstdc++-v3/testsuite/20_util/ratio/operations/45866.cc
blob: 2b3a0d6a7bd5ae56d0dd362ddaec52b4c15e2a79 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
// { dg-options "-std=gnu++11" }
// { dg-require-cstdint "" }

// 2010-10-18  Paolo Carlini  <paolo.carlini@oracle.com>

// Copyright (C) 2010-2015 Free Software Foundation, Inc.
//
// This file is part of the GNU ISO C++ Library.  This library is free
// software; you can redistribute it and/or modify it under the
// terms of the GNU General Public License as published by the
// Free Software Foundation; either version 3, or (at your option)
// any later version.

// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.

// You should have received a copy of the GNU General Public License
// along with this library; see the file COPYING3.  If not see
// <http://www.gnu.org/licenses/>.

#include <ratio>
#include <testsuite_hooks.h>

// libstdc++/45866
void test01()
{
  bool test __attribute__((unused)) = true;

  typedef std::ratio<1, 4>::type r_type1;
  typedef std::ratio<3, 2>::type r_type2;

  typedef std::ratio_add<r_type1, r_type2> ra_type;

  VERIFY( ra_type::num == ra_type::type::num );
  VERIFY( ra_type::den == ra_type::type::den );
  VERIFY( ra_type::num == 7 );
  VERIFY( ra_type::den == 4 );

  typedef std::ratio_subtract<r_type1, r_type2> rs_type;

  VERIFY( rs_type::num == rs_type::type::num );
  VERIFY( rs_type::den == rs_type::type::den );
  VERIFY( rs_type::num == -5 );
  VERIFY( rs_type::den == 4 );

  typedef std::ratio_multiply<r_type1, r_type2> rm_type;

  VERIFY( rm_type::num == rm_type::type::num );
  VERIFY( rm_type::den == rm_type::type::den );
  VERIFY( rm_type::num == 3 );
  VERIFY( rm_type::den == 8 );

  typedef std::ratio_divide<r_type1, r_type2> rd_type;

  VERIFY( rd_type::num == rd_type::type::num );
  VERIFY( rd_type::den == rd_type::type::den );
  VERIFY( rd_type::num == 1 );
  VERIFY( rd_type::den == 6 );
}

int main()
{
  test01();
  return 0;
}