]> git.eshelyaron.com Git - emacs.git/commitdiff
; Mark Bug#29799 tests as failing since we reverted the fix
authorNoam Postavsky <npostavs@gmail.com>
Thu, 30 Apr 2020 23:35:45 +0000 (19:35 -0400)
committerNoam Postavsky <npostavs@gmail.com>
Wed, 6 May 2020 01:07:58 +0000 (21:07 -0400)
* test/lisp/emacs-lisp/cl-macs-tests.el (cl-macs-loop-for-as-equals-and)
(cl-macs-loop-conditional-step-clauses): Set :expected-result to
:failed.

Don't merge to master.  The mentioned reverts are a safe-for-release
fix for Bug#40727.

test/lisp/emacs-lisp/cl-macs-tests.el

index 9ca84f156a00aab53cc3b008a66863b2a3144f21..c357ecde951b5e6967cc1ee2fb32bed87e18e643 100644 (file)
@@ -498,6 +498,7 @@ collection clause."
 
 (ert-deftest cl-macs-loop-for-as-equals-and ()
   "Test for https://debbugs.gnu.org/29799 ."
+  :expected-result :failed
   (let ((arr (make-vector 3 0)))
     (should (equal '((0 0) (1 1) (2 2))
                    (cl-loop for k below 3 for x = k and z = (elt arr k)
@@ -531,6 +532,7 @@ collection clause."
 
 (ert-deftest cl-macs-loop-conditional-step-clauses ()
   "These tests failed under the initial fixes in #bug#29799."
+  :expected-result :failed
   (should (cl-loop for i from 1 upto 100 and j = 1 then (1+ j)
                    if (not (= i j))
                    return nil