Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / libstdc++-v3 / testsuite / 26_numerics / cmath / powi.cc
blob8a56f2fddab40fcf0e9d4cfd1982ad09062c5340
1 // 2005-02-13 Paolo Carlini <pcarlini@suse.de>
3 // Copyright (C) 2005 Free Software Foundation
4 //
5 // This file is part of the GNU ISO C++ Library. This library is free
6 // software; you can redistribute it and/or modify it under the
7 // terms of the GNU General Public License as published by the
8 // Free Software Foundation; either version 2, or (at your option)
9 // any later version.
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
16 // You should have received a copy of the GNU General Public License along
17 // with this library; see the file COPYING. If not, write to the Free
18 // Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
19 // USA.
21 // 26.5 C Library
23 #include <cmath>
24 #include <testsuite_hooks.h>
26 template<typename T>
27 void test01_do()
29 using namespace std;
30 bool test __attribute__((unused)) = true;
32 VERIFY( pow(T(1.0), 0) == T(1.0) );
33 VERIFY( pow(T(2.0), 0) == T(1.0) );
34 VERIFY( pow(T(-1.0), 0) == T(1.0) );
35 VERIFY( pow(T(-4.0), 0) == T(1.0) );
37 VERIFY( pow(T(1.0), 1) == T(1.0) );
38 VERIFY( pow(T(2.0), 1) == T(2.0) );
39 VERIFY( pow(T(-1.0), 1) == T(-1.0) );
40 VERIFY( pow(T(-4.0), 1) == T(-4.0) );
42 VERIFY( pow(T(1.0), -1) == T(1.0) / T(1.0) );
43 VERIFY( pow(T(2.0), -1) == T(1.0) / T(2.0) );
44 VERIFY( pow(T(-1.0), -1) == T(1.0) / T(-1.0) );
45 VERIFY( pow(T(-4.0), -1) == T(1.0) / T(-4.0) );
47 VERIFY( pow(T(1.0), 2) == T(1.0) * T(1.0) );
48 VERIFY( pow(T(2.0), 2) == T(2.0) * T(2.0) );
49 VERIFY( pow(T(-1.0), 2) == T(-1.0) * T(-1.0) );
50 VERIFY( pow(T(-4.0), 2) == T(-4.0) * T(-4.0) );
53 void test01()
55 test01_do<float>();
56 test01_do<double>();
57 test01_do<long double>();
60 int main()
62 test01();
63 return 0;