aboutsummaryrefslogtreecommitdiffstats
path: root/test/src
diff options
context:
space:
mode:
Diffstat (limited to 'test/src')
-rw-r--r--test/src/data-tests.el10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/src/data-tests.el b/test/src/data-tests.el
index 701e579ae2e..3cd4802a981 100644
--- a/test/src/data-tests.el
+++ b/test/src/data-tests.el
@@ -547,6 +547,16 @@ comparing the subr with a much slower lisp implementation."
547 (should (<= b-1 b0)) 547 (should (<= b-1 b0))
548 (should (<= b-1 b-1)) 548 (should (<= b-1 b-1))
549 549
550 (should (= (+ f0 b0) (+ b0 f0)))
551 (should (= (+ f0 b-1) (+ b-1 f0)))
552 (should (= (+ f-1 b0) (+ b0 f-1)))
553 (should (= (+ f-1 b-1) (+ b-1 f-1)))
554
555 (should (= (* f0 b0) (* b0 f0)))
556 (should (= (* f0 b-1) (* b-1 f0)))
557 (should (= (* f-1 b0) (* b0 f-1)))
558 (should (= (* f-1 b-1) (* b-1 f-1)))
559
550 (should (= b0 f0)) 560 (should (= b0 f0))
551 (should (= b0 b0)) 561 (should (= b0 b0))
552 562