[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Guile-commits] 33/36: ignore 'expect-fail' forms in elisp tests
From: |
Christopher Allan Webber |
Subject: |
[Guile-commits] 33/36: ignore 'expect-fail' forms in elisp tests |
Date: |
Tue, 19 Oct 2021 18:11:32 -0400 (EDT) |
cwebber pushed a commit to branch wip-elisp-rebased
in repository guile.
commit d5246bebe77970a41c07aa4fd545f8b7932eee49
Author: Robin Templeton <robin@terpri.org>
AuthorDate: Sun May 10 17:41:12 2015 -0400
ignore 'expect-fail' forms in elisp tests
(Best-ability ChangeLog annotation added by Christine Lemmer-Webber.)
* test-suite/tests/elisp-compiler.test (compile-test): Update to support
expect-fail.
---
test-suite/tests/elisp-compiler.test | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/test-suite/tests/elisp-compiler.test
b/test-suite/tests/elisp-compiler.test
index 1157afb..6998e65 100644
--- a/test-suite/tests/elisp-compiler.test
+++ b/test-suite/tests/elisp-compiler.test
@@ -36,7 +36,9 @@
(compile 'exp #:from 'elisp #:to 'value))))
((_ (pass-if-exception test-name exc exp))
(pass-if-exception test-name exc
- (compile 'exp #:from 'elisp #:to 'value)))))
+ (compile 'exp #:from 'elisp #:to 'value)))
+ ((_ (expect-fail test-name exp))
+ #f)))
(define-syntax with-test-prefix/compile
(syntax-rules ()
- [Guile-commits] 31/36: use standard evaluator, (continued)
- [Guile-commits] 31/36: use standard evaluator, Christopher Allan Webber, 2021/10/19
- [Guile-commits] 22/36: fset macro, 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] 35/36: loader: Handle interned constants as well as plain bytevectors., Christopher Allan Webber, 2021/10/19
- [Guile-commits] 25/36: only evaluate top-level macro definitions, Christopher Allan Webber, 2021/10/19
- [Guile-commits] 27/36: execute top level require forms, Christopher Allan Webber, 2021/10/19
- [Guile-commits] 34/36: temporarily disable elisp exception tests, Christopher Allan Webber, 2021/10/19
- [Guile-commits] 24/36: degenerate let forms, Christopher Allan Webber, 2021/10/19
- [Guile-commits] 32/36: update cross-compilation test, Christopher Allan Webber, 2021/10/19
- [Guile-commits] 33/36: ignore 'expect-fail' forms in elisp tests,
Christopher Allan Webber <=