re PR libstdc++/48760 (std::complex constructor buggy in the face of NaN's)
[gcc.git] / libstdc++-v3 / testsuite / 26_numerics / complex / cons / 48760.cc
1 // Copyright (C) 2011 Free Software Foundation, Inc.
2 //
3 // This file is part of the GNU ISO C++ Library. This library is free
4 // software; you can redistribute it and/or modify it under the
5 // terms of the GNU General Public License as published by the
6 // Free Software Foundation; either version 3, or (at your option)
7 // any later version.
8
9 // This library is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
13
14 // You should have received a copy of the GNU General Public License along
15 // with this library; see the file COPYING3. If not see
16 // <http://www.gnu.org/licenses/>.
17
18 #include <complex>
19 #include <limits>
20 #include <testsuite_hooks.h>
21
22 template<typename T>
23 void do_test01()
24 {
25 bool test __attribute__((unused)) = true;
26
27 if (std::numeric_limits<T>::has_quiet_NaN)
28 {
29 std::complex<T> c1(T(0), std::numeric_limits<T>::quiet_NaN());
30 VERIFY( c1.real() == T(0) );
31 VERIFY( std::isnan(c1.imag()) );
32
33 std::complex<T> c2(std::numeric_limits<T>::quiet_NaN(), T(0));
34 VERIFY( std::isnan(c2.real()) );
35 VERIFY( c2.imag() == T(0) );
36
37 std::complex<T> c3(std::numeric_limits<T>::quiet_NaN(),
38 std::numeric_limits<T>::quiet_NaN());
39 VERIFY( std::isnan(c3.real()) );
40 VERIFY( std::isnan(c3.imag()) );
41 }
42 }
43
44 // libstdc++/48760
45 void test01()
46 {
47 do_test01<float>();
48 do_test01<double>();
49 do_test01<long double>();
50 }
51
52 int main()
53 {
54 test01();
55 return 0;
56 }