[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Guile-commits] 34/36: temporarily disable elisp exception tests
From: |
Christopher Allan Webber |
Subject: |
[Guile-commits] 34/36: temporarily disable elisp exception tests |
Date: |
Tue, 19 Oct 2021 17:59:43 -0400 (EDT) |
cwebber pushed a commit to branch wip-elisp-rebased
in repository guile.
commit 20db147406aeaab65e935363934630ce9c5517d3
Author: Robin Templeton <robin@terpri.org>
AuthorDate: Sun May 10 17:41:27 2015 -0400
temporarily disable elisp exception tests
(Best-ability ChangeLog annotation added by Christopher Allan Webber.)
* test-suite/tests/elisp-compiler.test ("catch without exception" test)
("catch and throw" test, "unwind-protect" test): Switch from pass-if
to expect-fail.
---
test-suite/tests/elisp-compiler.test | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/test-suite/tests/elisp-compiler.test
b/test-suite/tests/elisp-compiler.test
index 6998e65..edee5f9 100644
--- a/test-suite/tests/elisp-compiler.test
+++ b/test-suite/tests/elisp-compiler.test
@@ -129,7 +129,7 @@
(with-test-prefix/compile "Exceptions"
- (pass-if "catch without exception"
+ (expect-fail "catch without exception"
(and (setq a 0)
(= (catch 'foobar
(setq a (1+ a))
@@ -142,14 +142,14 @@
;(pass-if-exception "uncaught exception" 'elisp-exception
; (throw 'abc 1))
- (pass-if "catch and throw"
+ (expect-fail "catch and throw"
(and (setq mylist '(1 2))
(= (catch 'abc (throw 'abc 2) 1) 2)
(= (catch 'abc (catch 'def (throw 'abc (1+ 0)) 2) 3) 1)
(= (catch 'abc (catch 'def (throw 'def 1) 2) 3) 3)
(= (catch mylist (catch (list 1 2) (throw mylist 1) 2) 3) 1)))
- (pass-if "unwind-protect"
+ (expect-fail "unwind-protect"
(progn (setq a 0 b 1 c 1)
(catch 'exc
(unwind-protect (progn (setq a 1)
- [Guile-commits] 29/36: use guile eval for elisp tree-il, (continued)
- [Guile-commits] 29/36: use guile eval for elisp tree-il, Christopher Allan Webber, 2021/10/19
- [Guile-commits] 31/36: use standard evaluator, Christopher Allan Webber, 2021/10/19
- [Guile-commits] 32/36: update cross-compilation test, Christopher Allan Webber, 2021/10/19
- [Guile-commits] 36/36: elisp: boot: Replace removed FRAME-PROCEDURE with FRAME-PROCEDURE-NAME., Christopher Allan Webber, 2021/10/19
- [Guile-commits] 19/36: compiler macros, Christopher Allan Webber, 2021/10/19
- [Guile-commits] 21/36: use defsubst, Christopher Allan Webber, 2021/10/19
- [Guile-commits] 28/36: deprecated eval-when situations, Christopher Allan Webber, 2021/10/19
- [Guile-commits] 30/36: guile-backtrace function, Christopher Allan Webber, 2021/10/19
- [Guile-commits] 25/36: only evaluate top-level macro definitions, Christopher Allan Webber, 2021/10/19
- [Guile-commits] 33/36: ignore 'expect-fail' forms in elisp tests, Christopher Allan Webber, 2021/10/19
- [Guile-commits] 34/36: temporarily disable elisp exception tests,
Christopher Allan Webber <=
- [Guile-commits] 35/36: loader: Handle interned constants as well as plain bytevectors., Christopher Allan Webber, 2021/10/19