From: Robin Templeton Date: Sun, 10 May 2015 21:41:12 +0000 (-0400) Subject: ignore 'expect-fail' forms in elisp tests X-Git-Url: https://git.hcoop.net/bpt/guile.git/commitdiff_plain/ccf7563fda3f16250212e6eef76319a317b863a5 ignore 'expect-fail' forms in elisp tests --- diff --git a/test-suite/tests/elisp-compiler.test b/test-suite/tests/elisp-compiler.test index ddfa80a9a..1e40dc040 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 ()