aboutsummaryrefslogtreecommitdiffstats
path: root/test/src/comp-tests.el
diff options
context:
space:
mode:
Diffstat (limited to 'test/src/comp-tests.el')
-rw-r--r--test/src/comp-tests.el5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/src/comp-tests.el b/test/src/comp-tests.el
index 61838c670e1..b2f83998838 100644
--- a/test/src/comp-tests.el
+++ b/test/src/comp-tests.el
@@ -444,6 +444,11 @@ https://lists.gnu.org/archive/html/bug-gnu-emacs/2020-03/msg00914.html."
444 (should (= (comp-test-and-3-f t) 2)) 444 (should (= (comp-test-and-3-f t) 2))
445 (should (null (comp-test-and-3-f '(1 2))))) 445 (should (null (comp-test-and-3-f '(1 2)))))
446 446
447(comp-deftest copy-insn ()
448 (should (equal (comp-test-copy-insn-f '(1 2 3 (4 5 6)))
449 '(1 2 3 (4 5 6))))
450 (should (null (comp-test-copy-insn-f nil))))
451
447 452
448;;;;;;;;;;;;;;;;;;;;; 453;;;;;;;;;;;;;;;;;;;;;
449;; Tromey's tests. ;; 454;; Tromey's tests. ;;