]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix mod-test-sum-test for bignums
authorTom Tromey <tom@tromey.com>
Wed, 8 Aug 2018 23:34:42 +0000 (17:34 -0600)
committerTom Tromey <tom@tromey.com>
Wed, 8 Aug 2018 23:34:42 +0000 (17:34 -0600)
* test/src/emacs-module-tests.el (mod-test-sum-test): Update
for bignums.

test/src/emacs-module-tests.el

index 9ef5a47b159d9870f486581c20f9ffa10f2896ed..90cd37a98a519a9ac5afddfa55d99151bffd330f 100644 (file)
                (1+ #x1fffffff)))
     (should (= (mod-test-sum -1 (1+ #x1fffffff))
                #x1fffffff)))
-  (should-error (mod-test-sum 1 most-positive-fixnum)
-                :type 'overflow-error)
-  (should-error (mod-test-sum -1 most-negative-fixnum)
-                :type 'overflow-error))
+  (should (= (mod-test-sum 1 most-positive-fixnum)
+             (1+ most-positive-fixnum)))
+  (should (= (mod-test-sum -1 most-negative-fixnum)
+             (1- most-negative-fixnum))))
 
 (ert-deftest mod-test-sum-docstring ()
   (should (string= (documentation 'mod-test-sum) "Return A + B\n\n(fn a b)")))