cwebber pushed a commit to branch wip-elisp-rebased
in repository guile.
commit d5246bebe77970a41c07aa4fd545f8b7932eee49
Author: Robin Templeton <[email protected]>
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 ()