summaryrefslogtreecommitdiff
path: root/gmp/tests/cxx/t-ops.cc
diff options
context:
space:
mode:
authorPedro Alvarez <pedro.alvarez@codethink.co.uk>2016-05-27 17:39:31 +0100
committerPedro Alvarez <pedro.alvarez@codethink.co.uk>2016-05-27 17:53:32 +0100
commit26c75cf8267919f81a1759c9c965a52c660233f9 (patch)
treecf2a39cf56c2c8ac45760854413ab233e6263974 /gmp/tests/cxx/t-ops.cc
parent56892c1d217baea02092b51a09bbc924130ca84c (diff)
downloadgcc-tarball-26c75cf8267919f81a1759c9c965a52c660233f9.tar.gz
Diffstat (limited to 'gmp/tests/cxx/t-ops.cc')
-rw-r--r--gmp/tests/cxx/t-ops.cc27
1 files changed, 12 insertions, 15 deletions
diff --git a/gmp/tests/cxx/t-ops.cc b/gmp/tests/cxx/t-ops.cc
index b1bf0dc4d8..01fe3b0fbc 100644
--- a/gmp/tests/cxx/t-ops.cc
+++ b/gmp/tests/cxx/t-ops.cc
@@ -1,21 +1,21 @@
/* Test mp*_class operators and functions.
-Copyright 2001-2003 Free Software Foundation, Inc.
+Copyright 2001, 2002, 2003 Free Software Foundation, Inc.
-This file is part of the GNU MP Library test suite.
+This file is part of the GNU MP Library.
-The GNU MP Library test suite is free software; you can redistribute it
-and/or modify it under the terms of the GNU General Public License as
-published by the Free Software Foundation; either version 3 of the License,
-or (at your option) any later version.
+The GNU MP Library is free software; you can redistribute it and/or modify
+it under the terms of the GNU Lesser General Public License as published by
+the Free Software Foundation; either version 3 of the License, or (at your
+option) any later version.
-The GNU MP Library test suite is distributed in the hope that it will be
-useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
-Public License for more details.
+The GNU MP Library is distributed in the hope that it will be useful, but
+WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+License for more details.
-You should have received a copy of the GNU General Public License along with
-the GNU MP Library test suite. If not, see https://www.gnu.org/licenses/. */
+You should have received a copy of the GNU Lesser General Public License
+along with the GNU MP Library. If not, see http://www.gnu.org/licenses/. */
#include "config.h"
@@ -60,8 +60,6 @@ check_mpz (void)
mpz_class a(-123);
mpz_class b;
b = abs(a); ASSERT_ALWAYS(b == 123);
- a <<= 300;
- b = abs(a); ASSERT_ALWAYS(a + b == 0);
}
// sqrt
@@ -494,7 +492,6 @@ check_mpq (void)
mpq_class a(1, 3), b(3, 4);
mpq_class c;
c = a * b; ASSERT_ALWAYS(c == 0.25);
- c = b * b; ASSERT_ALWAYS(c == 0.5625);
}
// operator/