1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-10 14:00:21 +02:00

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.
This commit is contained in:
Robin Templeton 2015-05-10 17:41:12 -04:00 committed by Christine Lemmer-Webber
parent 8ce962192f
commit d5246bebe7
No known key found for this signature in database
GPG key ID: 4BC025925FF8F4D3

View file

@ -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 ()