diff options
| author | Tino Calancha | 2017-05-26 10:59:19 +0900 |
|---|---|---|
| committer | Tino Calancha | 2017-05-26 10:59:19 +0900 |
| commit | 4c4a1b3217570dd306c7ad3ee273a9317ab29134 (patch) | |
| tree | 456c85029d9bb0456a5a47df8902d71df12afc6d /test | |
| parent | 2ea4b84f5ee41e633430eef6b4a907dd8d0ce2ed (diff) | |
| download | emacs-4c4a1b3217570dd306c7ad3ee273a9317ab29134.tar.gz emacs-4c4a1b3217570dd306c7ad3ee273a9317ab29134.zip | |
test-calc-23889: Skip test on 32-bit platforms
This test fails on some 32-bit platforms as mentioned in
https://lists.gnu.org/archive/html/emacs-devel/2017-05/msg00737.html
* test/lisp/calc/calc-tests.el (test-calc-23889): Skip when
the Lisp integer is not big enough.
Diffstat (limited to 'test')
| -rw-r--r-- | test/lisp/calc/calc-tests.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/lisp/calc/calc-tests.el b/test/lisp/calc/calc-tests.el index 68567dcc212..e4b43357a01 100644 --- a/test/lisp/calc/calc-tests.el +++ b/test/lisp/calc/calc-tests.el | |||
| @@ -88,6 +88,7 @@ An existing calc stack is reused, otherwise a new one is created." | |||
| 88 | 88 | ||
| 89 | (ert-deftest test-calc-23889 () | 89 | (ert-deftest test-calc-23889 () |
| 90 | "Test for http://debbugs.gnu.org/23889 and 25652." | 90 | "Test for http://debbugs.gnu.org/23889 and 25652." |
| 91 | (skip-unless (>= math-bignum-digit-length 9)) | ||
| 91 | (dolist (mode '(deg rad)) | 92 | (dolist (mode '(deg rad)) |
| 92 | (let ((calc-angle-mode mode)) | 93 | (let ((calc-angle-mode mode)) |
| 93 | ;; If user inputs angle units, then should ignore `calc-angle-mode'. | 94 | ;; If user inputs angle units, then should ignore `calc-angle-mode'. |