[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Guile-commits] 35/36: ignore 'expect-fail' forms in elisp tests
From: |
Christopher Allan Webber |
Subject: |
[Guile-commits] 35/36: ignore 'expect-fail' forms in elisp tests |
Date: |
Fri, 25 Mar 2016 20:04:33 +0000 |
cwebber pushed a commit to branch wip-elisp
in repository guile.
commit a005046c5989b9b5cce8f3e60dea297b878ff9b1
Author: Robin Templeton <address@hidden>
Date: Sun May 10 17:41:12 2015 -0400
ignore 'expect-fail' forms in elisp tests
(Best-ability ChangeLog annotation added by Christopher Allan Webber.)
* test-suite/tests/elisp-compiler.test (compile-test): Update to support
expect-fail.
---
test-suite/tests/elisp-compiler.test | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
diff --git a/test-suite/tests/elisp-compiler.test
b/test-suite/tests/elisp-compiler.test
index ddfa80a..1e40dc0 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] 26/36: degenerate let forms, (continued)
- [Guile-commits] 26/36: degenerate let forms, Christopher Allan Webber, 2016/03/25
- [Guile-commits] 27/36: only evaluate top-level macro definitions, Christopher Allan Webber, 2016/03/25
- [Guile-commits] 28/36: top level fixes, Christopher Allan Webber, 2016/03/25
- [Guile-commits] 29/36: execute top level require forms, Christopher Allan Webber, 2016/03/25
- [Guile-commits] 31/36: use guile eval for elisp tree-il, Christopher Allan Webber, 2016/03/25
- [Guile-commits] 30/36: deprecated eval-when situations, Christopher Allan Webber, 2016/03/25
- [Guile-commits] 32/36: guile-backtrace function, Christopher Allan Webber, 2016/03/25
- [Guile-commits] 33/36: use standard evaluator, Christopher Allan Webber, 2016/03/25
- [Guile-commits] 34/36: update cross-compilation test, Christopher Allan Webber, 2016/03/25
- [Guile-commits] 36/36: temporarily disable elisp exception tests, Christopher Allan Webber, 2016/03/25
- [Guile-commits] 35/36: ignore 'expect-fail' forms in elisp tests,
Christopher Allan Webber <=