Reverting merge from trunk
[official-gcc.git] / libstdc++-v3 / testsuite / 20_util / ratio / comparisons / comp1.cc
blob2f07638a39d1618850d90c2f023ca7c392be121d
1 // { dg-options "-std=gnu++0x" }
2 // { dg-require-cstdint "" }
4 // Copyright (C) 2008-2013 Free Software Foundation, Inc.
5 //
6 // This file is part of the GNU ISO C++ Library. This library is free
7 // software; you can redistribute it and/or modify it under the
8 // terms of the GNU General Public License as published by the
9 // Free Software Foundation; either version 3, or (at your option)
10 // any later version.
12 // This library is distributed in the hope that it will be useful,
13 // but WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 // GNU General Public License for more details.
17 // You should have received a copy of the GNU General Public License
18 // along with this library; see the file COPYING3. If not see
19 // <http://www.gnu.org/licenses/>.
21 #include <ratio>
22 #include <testsuite_hooks.h>
24 void
25 test01()
27 bool test __attribute__((unused)) = true;
29 VERIFY(( std::ratio_equal<std::ratio<2,6>, std::ratio<1,3>>::value == 1 ));
30 VERIFY(( std::ratio_equal<std::ratio<2,6>, std::ratio<1,4>>::value == 0 ));
32 VERIFY( (std::ratio_not_equal<std::ratio<2,6>,
33 std::ratio<1,3>>::value == 0) );
34 VERIFY( (std::ratio_not_equal<std::ratio<2,6>,
35 std::ratio<1,4>>::value == 1) );
38 void
39 test02()
41 bool test __attribute__((unused)) = true;
43 VERIFY( (std::ratio_less<std::ratio<1,4>, std::ratio<1,3>>::value == 1) );
44 VERIFY( (std::ratio_less<std::ratio<-1,3>, std::ratio<1,3>>::value == 1) );
46 VERIFY( (std::ratio_less<std::ratio<1,3>, std::ratio<1,4>>::value == 0) );
47 VERIFY( (std::ratio_less<std::ratio<1,3>, std::ratio<-1,3>>::value == 0) );
49 VERIFY( (std::ratio_less<std::ratio<-1,3>, std::ratio<-1,4>>::value == 1) );
50 VERIFY( (std::ratio_less<std::ratio<0,4>, std::ratio<0,3>>::value == 0) );
51 VERIFY( (std::ratio_less<std::ratio<1,3>, std::ratio<0,3>>::value == 0) );
52 VERIFY( (std::ratio_less<std::ratio<0,3>, std::ratio<-1,4>>::value == 0) );
54 VERIFY( (std::ratio_less_equal<std::ratio<-1,3>,
55 std::ratio<-1,3>>::value == 1) );
56 VERIFY( ( std::ratio_less_equal<std::ratio<1,4>,
57 std::ratio<1,3>>::value == 1) );
59 VERIFY( (std::ratio_less_equal<std::ratio<1,4>,
60 std::ratio<-1,3>>::value == 0) );
61 VERIFY( (std::ratio_less_equal<std::ratio<1,3>,
62 std::ratio<-1,3>>::value == 0) );
64 VERIFY( (std::ratio_greater<std::ratio<1,3>, std::ratio<1,4>>::value == 1) );
65 VERIFY( (std::ratio_greater<std::ratio<1,3>, std::ratio<-1,3>>::value == 1) );
67 VERIFY( (std::ratio_greater<std::ratio<1,4>, std::ratio<1,3>>::value == 0) );
68 VERIFY( (std::ratio_greater<std::ratio<-1,3>, std::ratio<1,3>>::value == 0) );
70 VERIFY( (std::ratio_greater_equal<std::ratio<1,3>,
71 std::ratio<1,3>>::value == 1) );
72 VERIFY( (std::ratio_greater_equal<std::ratio<1,3>,
73 std::ratio<-1,3>>::value == 1) );
75 VERIFY( (std::ratio_greater_equal<std::ratio<-1,3>,
76 std::ratio<1,3>>::value == 0) );
77 VERIFY( (std::ratio_greater_equal<std::ratio<1,4>,
78 std::ratio<1,3>>::value == 0) );
81 int main()
83 test01();
84 test02();
85 return 0;