1 // 2005-02-13 Paolo Carlini <pcarlini@suse.de>
3 // Copyright (C) 2005 Free Software Foundation
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)
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,
24 #include <testsuite_hooks.h>
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) );
57 test01_do
<long double>();