[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Guile-commits] 34/37: temporarily disable elisp exception tests
From: |
Robin Templeton |
Subject: |
[Guile-commits] 34/37: temporarily disable elisp exception tests |
Date: |
Sun, 26 Jan 2025 18:17:49 -0500 (EST) |
bpt pushed a commit to branch wip-elisp-rebased
in repository guile.
commit e38f6377e31ce584f9e88f7f5fae2f480d94a88b
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 Christine Lemmer-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 6998e654b..edee5f93a 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] 18/37: defconst, defvar: proclaim special at compile-time, (continued)
- [Guile-commits] 18/37: defconst, defvar: proclaim special at compile-time, Robin Templeton, 2025/01/26
- [Guile-commits] 22/37: fset macro, Robin Templeton, 2025/01/26
- [Guile-commits] 27/37: execute top level require forms, Robin Templeton, 2025/01/26
- [Guile-commits] 28/37: deprecated eval-when situations, Robin Templeton, 2025/01/26
- [Guile-commits] 25/37: only evaluate top-level macro definitions, Robin Templeton, 2025/01/26
- [Guile-commits] 26/37: top level fixes, Robin Templeton, 2025/01/26
- [Guile-commits] 29/37: use guile eval for elisp tree-il, Robin Templeton, 2025/01/26
- [Guile-commits] 31/37: use standard evaluator, Robin Templeton, 2025/01/26
- [Guile-commits] 32/37: update cross-compilation test, Robin Templeton, 2025/01/26
- [Guile-commits] 33/37: ignore 'expect-fail' forms in elisp tests, Robin Templeton, 2025/01/26
- [Guile-commits] 34/37: temporarily disable elisp exception tests,
Robin Templeton <=
- [Guile-commits] 35/37: loader: Handle interned constants as well as plain bytevectors., Robin Templeton, 2025/01/26
- [Guile-commits] 23/37: eval-when, Robin Templeton, 2025/01/26
- [Guile-commits] 30/37: guile-backtrace function, Robin Templeton, 2025/01/26
- [Guile-commits] 37/37: remove uses of define-inlinable, Robin Templeton, 2025/01/26
- [Guile-commits] 36/37: elisp: boot: Replace removed FRAME-PROCEDURE with FRAME-PROCEDURE-NAME., Robin Templeton, 2025/01/26