diff options
author | Robin Templeton <robin@terpri.org> | 2015-05-10 17:41:12 -0400 |
---|---|---|
committer | Christine Lemmer-Webber <cwebber@dustycloud.org> | 2021-10-19 18:10:05 -0400 |
commit | d5246bebe77970a41c07aa4fd545f8b7932eee49 (patch) | |
tree | 9566131f3064ef90d3e8ace9376995cb817dfda3 | |
parent | 8ce962192f1dbb961472845f82348edf5ae73d2e (diff) | |
download | guile-d5246bebe77970a41c07aa4fd545f8b7932eee49.tar.gz |
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.
-rw-r--r-- | 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 1157afbb9..6998e654b 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 () |