]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/20_util/is_floating_point/value.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 20_util / is_floating_point / value.cc
CommitLineData
52066eae
JW
1// { dg-options "-Wno-pedantic" }
2// { dg-do compile { target c++11 } }
6d585f01 3//
8d9254fc 4// Copyright (C) 2011-2020 Free Software Foundation, Inc.
6d585f01
PC
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.
11//
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.
16//
17// You should have received a copy of the GNU General Public License along
18// with this library; see the file COPYING3. If not see
19// <http://www.gnu.org/licenses/>.
20
21#include <type_traits>
6d585f01
PC
22#include <testsuite_tr1.h>
23
24void test01()
25{
6d585f01
PC
26 using std::is_floating_point;
27 using namespace __gnu_test;
28
44916fe1
PC
29 static_assert(test_category<is_floating_point, void>(false), "");
30 static_assert(test_category<is_floating_point, char>(false), "");
31 static_assert(test_category<is_floating_point, signed char>(false), "");
32 static_assert(test_category<is_floating_point, unsigned char>(false), "");
6d585f01 33#ifdef _GLIBCXX_USE_WCHAR_T
44916fe1 34 static_assert(test_category<is_floating_point, wchar_t>(false), "");
6d585f01 35#endif
44916fe1
PC
36 static_assert(test_category<is_floating_point, short>(false), "");
37 static_assert(test_category<is_floating_point, unsigned short>(false), "");
38 static_assert(test_category<is_floating_point, int>(false), "");
39 static_assert(test_category<is_floating_point, unsigned int>(false), "");
40 static_assert(test_category<is_floating_point, long>(false), "");
41 static_assert(test_category<is_floating_point, unsigned long>(false), "");
42 static_assert(test_category<is_floating_point, long long>(false), "");
43 static_assert(test_category<is_floating_point,
44 unsigned long long>(false), "");
45
46 static_assert(test_category<is_floating_point, float>(true), "");
47 static_assert(test_category<is_floating_point, double>(true), "");
48 static_assert(test_category<is_floating_point, long double>(true), "");
6d585f01 49
2f297149 50#ifndef __STRICT_ANSI__
6d585f01
PC
51 // GNU Extensions.
52#ifdef _GLIBCXX_USE_FLOAT128
44916fe1 53 static_assert(test_category<is_floating_point, __float128>(true), "");
6d585f01
PC
54#endif
55
56#ifdef _GLIBCXX_USE_INT128
44916fe1
PC
57 static_assert(test_category<is_floating_point, __int128>(false), "");
58 static_assert(test_category<is_floating_point,
59 unsigned __int128>(false), "");
2f297149 60#endif
6d585f01
PC
61#endif
62
63 // Sanity check.
44916fe1 64 static_assert(test_category<is_floating_point, ClassType>(false), "");
6d585f01 65}