summaryrefslogtreecommitdiff
path: root/test/lisp/calc
diff options
context:
space:
mode:
authorStefan Monnier <monnier@iro.umontreal.ca>2019-06-26 10:04:52 -0400
committerStefan Monnier <monnier@iro.umontreal.ca>2019-06-26 10:04:52 -0400
commit4e302630ae050ce13455519e8e72e43c8ea45a81 (patch)
tree96339a113c15d21b1ce3cda0ddfaae212d593b4b /test/lisp/calc
parent698ff554ac2699ec48fefc85a1307cbc4a183b0d (diff)
downloademacs-4e302630ae050ce13455519e8e72e43c8ea45a81.tar.gz
* test/lisp/calc/calc-tests.el (test-math-bignum, test-calc-23889): Disable
Not applicable any more with native bignums.
Diffstat (limited to 'test/lisp/calc')
-rw-r--r--test/lisp/calc/calc-tests.el12
1 files changed, 6 insertions, 6 deletions
diff --git a/test/lisp/calc/calc-tests.el b/test/lisp/calc/calc-tests.el
index 8afec593b1e..96c75119c9c 100644
--- a/test/lisp/calc/calc-tests.el
+++ b/test/lisp/calc/calc-tests.el
@@ -62,11 +62,11 @@ An existing calc stack is reused, otherwise a new one is created."
(calc-top-n 1))
(calc-pop 0)))
-(ert-deftest test-math-bignum ()
- ;; bug#17556
- (let ((n (math-bignum most-negative-fixnum)))
- (should (math-negp n))
- (should (cl-notany #'cl-minusp (cdr n)))))
+;; (ert-deftest test-math-bignum ()
+;; ;; bug#17556
+;; (let ((n (math-bignum most-negative-fixnum)))
+;; (should (math-negp n))
+;; (should (cl-notany #'cl-minusp (cdr n)))))
(ert-deftest test-calc-remove-units ()
(should (calc-tests-equal (calc-tests-simple #'calc-remove-units "-1 m") -1)))
@@ -95,7 +95,7 @@ An existing calc stack is reused, otherwise a new one is created."
(ert-deftest test-calc-23889 ()
"Test for https://debbugs.gnu.org/23889 and 25652."
- (skip-unless (>= math-bignum-digit-length 9))
+ (skip-unless t) ;; (>= math-bignum-digit-length 9))
(dolist (mode '(deg rad))
(let ((calc-angle-mode mode))
;; If user inputs angle units, then should ignore `calc-angle-mode'.