Merge -r 127928:132243 from trunk
[official-gcc.git] / libstdc++-v3 / testsuite / tr1 / 5_numerical_facilities / special_functions / 03_beta / check_nan.cc
blob40fdd67eba7ff65c819155ad8721ddf74c049ad7
1 // { dg-require-c-std "" }
2 // { dg-options "-mieee" { target sh*-*-* } }
4 // 2007-01-10 Edward Smith-Rowland <3dw4rd@verizon.net>
5 //
6 // Copyright (C) 2007 Free Software Foundation, Inc.
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
11 // Free Software Foundation; either version 2, or (at your option)
12 // any later version.
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.
19 // You should have received a copy of the GNU General Public License along
20 // with this library; see the file COPYING. If not, write to the Free
21 // Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307,
22 // USA.
24 // 5.2.1.3 beta
26 #include <tr1/cmath>
27 #include <testsuite_hooks.h>
29 void
30 test01()
32 float xf = std::numeric_limits<float>::quiet_NaN();
33 double xd = std::numeric_limits<double>::quiet_NaN();
34 long double xl = std::numeric_limits<long double>::quiet_NaN();
36 float yf = 0.0F;
37 double yd = 0.0;
38 long double yl = 0.0L;
40 float a = std::tr1::beta(xf, yf);
41 float b = std::tr1::betaf(xf, yf);
42 double c = std::tr1::beta(xd, yd);
43 long double d = std::tr1::beta(xl, yl);
44 long double e = std::tr1::betal(xl, yl);
46 VERIFY(std::tr1::isnan<float>(a));
47 VERIFY(std::tr1::isnan<float>(b));
48 VERIFY(std::tr1::isnan<double>(c));
49 VERIFY(std::tr1::isnan<long double>(d));
50 VERIFY(std::tr1::isnan<long double>(e));
52 return;
55 void
56 test02()
58 float xf = 1.0F;
59 double xd = 1.0;
60 long double xl = 1.0L;
62 float yf = std::numeric_limits<float>::quiet_NaN();
63 double yd = std::numeric_limits<double>::quiet_NaN();
64 long double yl = std::numeric_limits<long double>::quiet_NaN();
66 float a = std::tr1::beta(xf, yf);
67 float b = std::tr1::betaf(xf, yf);
68 double c = std::tr1::beta(xd, yd);
69 long double d = std::tr1::beta(xl, yl);
70 long double e = std::tr1::betal(xl, yl);
72 VERIFY(std::tr1::isnan<float>(a));
73 VERIFY(std::tr1::isnan<float>(b));
74 VERIFY(std::tr1::isnan<double>(c));
75 VERIFY(std::tr1::isnan<long double>(d));
76 VERIFY(std::tr1::isnan<long double>(e));
78 return;
81 int
82 main()
84 test01();
85 test02();
86 return 0;