diff options
| author | Noam Postavsky | 2020-04-30 19:35:45 -0400 |
|---|---|---|
| committer | Noam Postavsky | 2020-05-05 21:07:58 -0400 |
| commit | 1e09364d677b0fb57efd18369c55e8c2d0e826f5 (patch) | |
| tree | e9a71de9b52a451fcbfacf3df7c345e005e7be35 /test/lisp | |
| parent | de1b33f5a8c6ceee9be59285f70370c3cb2efd34 (diff) | |
| download | emacs-1e09364d677b0fb57efd18369c55e8c2d0e826f5.tar.gz emacs-1e09364d677b0fb57efd18369c55e8c2d0e826f5.zip | |
; Mark Bug#29799 tests as failing since we reverted the fix
* 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.
Diffstat (limited to 'test/lisp')
| -rw-r--r-- | test/lisp/emacs-lisp/cl-macs-tests.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/lisp/emacs-lisp/cl-macs-tests.el b/test/lisp/emacs-lisp/cl-macs-tests.el index 9ca84f156a0..c357ecde951 100644 --- a/test/lisp/emacs-lisp/cl-macs-tests.el +++ b/test/lisp/emacs-lisp/cl-macs-tests.el | |||
| @@ -498,6 +498,7 @@ collection clause." | |||
| 498 | 498 | ||
| 499 | (ert-deftest cl-macs-loop-for-as-equals-and () | 499 | (ert-deftest cl-macs-loop-for-as-equals-and () |
| 500 | "Test for https://debbugs.gnu.org/29799 ." | 500 | "Test for https://debbugs.gnu.org/29799 ." |
| 501 | :expected-result :failed | ||
| 501 | (let ((arr (make-vector 3 0))) | 502 | (let ((arr (make-vector 3 0))) |
| 502 | (should (equal '((0 0) (1 1) (2 2)) | 503 | (should (equal '((0 0) (1 1) (2 2)) |
| 503 | (cl-loop for k below 3 for x = k and z = (elt arr k) | 504 | (cl-loop for k below 3 for x = k and z = (elt arr k) |
| @@ -531,6 +532,7 @@ collection clause." | |||
| 531 | 532 | ||
| 532 | (ert-deftest cl-macs-loop-conditional-step-clauses () | 533 | (ert-deftest cl-macs-loop-conditional-step-clauses () |
| 533 | "These tests failed under the initial fixes in #bug#29799." | 534 | "These tests failed under the initial fixes in #bug#29799." |
| 535 | :expected-result :failed | ||
| 534 | (should (cl-loop for i from 1 upto 100 and j = 1 then (1+ j) | 536 | (should (cl-loop for i from 1 upto 100 and j = 1 then (1+ j) |
| 535 | if (not (= i j)) | 537 | if (not (= i j)) |
| 536 | return nil | 538 | return nil |