]> git.eshelyaron.com Git - emacs.git/commitdiff
* test/lisp/calc/calc-tests.el (test-math-bignum, test-calc-23889): Disable
authorStefan Monnier <monnier@iro.umontreal.ca>
Wed, 26 Jun 2019 14:04:52 +0000 (10:04 -0400)
committerStefan Monnier <monnier@iro.umontreal.ca>
Wed, 26 Jun 2019 14:04:52 +0000 (10:04 -0400)
Not applicable any more with native bignums.

test/lisp/calc/calc-tests.el

index 8afec593b1eb2722072b2e5c94d17a2964b4e187..96c75119c9cacc3cb5cbe004686854a32a3ec092 100644 (file)
@@ -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'.