aboutsummaryrefslogtreecommitdiffstats
path: root/test/src
diff options
context:
space:
mode:
authorAndrea Corallo2019-10-05 16:05:37 +0200
committerAndrea Corallo2020-01-01 11:37:56 +0100
commit4cc1374786dcc28b80da546e708f7360f102abd4 (patch)
tree33e22b4032b4ffebbd5ec01f923253c88b368b12 /test/src
parentf8a454f3efa10d59b8228b5c1373bfc9fb8ed718 (diff)
downloademacs-4cc1374786dcc28b80da546e708f7360f102abd4.tar.gz
emacs-4cc1374786dcc28b80da546e708f7360f102abd4.zip
add comp-test-silly-frame2 to test funcs
Diffstat (limited to 'test/src')
-rw-r--r--test/src/comp-test-funcs.el10
1 files changed, 8 insertions, 2 deletions
diff --git a/test/src/comp-test-funcs.el b/test/src/comp-test-funcs.el
index 3d8d3437bda..540170ea966 100644
--- a/test/src/comp-test-funcs.el
+++ b/test/src/comp-test-funcs.el
@@ -340,8 +340,8 @@
340 340
341;; Non tested functions that proved just to be difficult to compile. 341;; Non tested functions that proved just to be difficult to compile.
342 342
343(defun comp-test-callee (_ _) t) 343(defun comp-test-callee (_ __) t)
344(defun comp-test-silly-frame (x) 344(defun comp-test-silly-frame1 (x)
345 (cl-case x 345 (cl-case x
346 (0 (comp-test-callee 346 (0 (comp-test-callee
347 (pcase comp-tests-var1 347 (pcase comp-tests-var1
@@ -349,4 +349,10 @@
349 (2 2)) 349 (2 2))
350 3)))) 350 3))))
351 351
352(defun comp-test-silly-frame2 (token)
353 (while c
354 (cl-case c
355 (?< 1)
356 (?> 2))))
357
352;;; comp-test-funcs.el ends here 358;;; comp-test-funcs.el ends here