]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/26_numerics/headers/cmath/c_math.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 26_numerics / headers / cmath / c_math.cc
CommitLineData
b2dad0e3
BK
1// 1999-06-05
2// Gabriel Dos Reis <dosreis@cmla.ens-cachan.fr>
3
99dee823 4// Copyright (C) 1999-2021 Free Software Foundation, Inc.
b2dad0e3
BK
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
748086b7 9// Free Software Foundation; either version 3, or (at your option)
b2dad0e3
BK
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
748086b7
JJ
18// with this library; see the file COPYING3. If not see
19// <http://www.gnu.org/licenses/>.
b2dad0e3
BK
20
21#include <cmath>
fe413112 22#include <testsuite_hooks.h>
b2dad0e3
BK
23
24// test compilation.
aa1b2f7d
BV
25int
26test01()
b2dad0e3 27{
aa1b2f7d
BV
28 float a = 1.f;
29 float b;
30 std::modf(a, &b);
31 return 0;
b2dad0e3
BK
32}
33
34// need more extravagant checks than this, of course, but this used to core...
aa1b2f7d
BV
35int
36test02()
b2dad0e3 37{
1558d39e 38 std::sin(static_cast<float>(0));
aa1b2f7d 39 return 0;
b2dad0e3
BK
40}
41
42// as did this.
aa1b2f7d
BV
43int
44test03()
b2dad0e3 45{
11f10e6b 46 double powtest __attribute__((unused)) = std::pow(2., 0);
aa1b2f7d 47 return 0;
b2dad0e3
BK
48}
49
50// this used to abort.
aa1b2f7d
BV
51int
52test04()
b2dad0e3
BK
53{
54 float x[2] = {1, 2};
55 float y = 3.4;
56 std::modf(y, &x[0]);
aa1b2f7d
BV
57 VERIFY(x[1] == 2);
58 return 0;
b2dad0e3
BK
59}
60
aa1b2f7d
BV
61int
62main()
b2dad0e3
BK
63{
64 test01();
65 test02();
66 test03();
67 test04();
68 return 0;
69}