aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/lisp/emacs-lisp/cl-extra-tests.el5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/lisp/emacs-lisp/cl-extra-tests.el b/test/lisp/emacs-lisp/cl-extra-tests.el
index baad8eb8e67..fe59703530f 100644
--- a/test/lisp/emacs-lisp/cl-extra-tests.el
+++ b/test/lisp/emacs-lisp/cl-extra-tests.el
@@ -94,4 +94,9 @@
94 (should (equal (list lst3 (cdr lst3) (cddr lst3)) 94 (should (equal (list lst3 (cdr lst3) (cddr lst3))
95 (cl-maplist fn3 lst lst2 lst3))))) 95 (cl-maplist fn3 lst lst2 lst3)))))
96 96
97(ert-deftest cl-extra-test-cl-make-random-state ()
98 (let ((s (cl-make-random-state)))
99 ;; Test for Bug#33731.
100 (should-not (eq s (cl-make-random-state s)))))
101
97;;; cl-extra-tests.el ends here 102;;; cl-extra-tests.el ends here