mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-06 23:16:13 -05:00
tests: build-emacs-utils: Allow test to pass on Emacs 27 too.
* tests/build-emacs-utils.scm ("emacs-batch-script: raise &emacs-batch-error on failure"): More loosely match expected error string, which differs between Emacs 27 and Emacs 28.
This commit is contained in:
parent
e1a8100936
commit
dcf133587a
1 changed files with 5 additions and 2 deletions
|
@ -23,6 +23,7 @@ (define-module (test build-emacs-utils)
|
|||
#:use-module (guix build utils)
|
||||
#:use-module ((guix utils)
|
||||
#:select (call-with-temporary-directory))
|
||||
#:use-module (ice-9 regex)
|
||||
#:use-module (srfi srfi-34)
|
||||
#:use-module (srfi srfi-64))
|
||||
|
||||
|
@ -36,8 +37,10 @@ (define-module (test build-emacs-utils)
|
|||
|
||||
(test-assert "emacs-batch-script: raise &emacs-batch-error on failure"
|
||||
(guard (c ((emacs-batch-error? c)
|
||||
(string-contains (emacs-batch-error-message c)
|
||||
"Lisp error: (wrong-type-argument numberp \"three\")")))
|
||||
;; The error message format changed between Emacs 27 and Emacs
|
||||
;; 28.
|
||||
(string-match "[Ww]rong.*argument.*numberp.*\"three\""
|
||||
(emacs-batch-error-message c))))
|
||||
(emacs-batch-script '(mapcar 'number-to-string (list 1 2 "three")))))
|
||||
|
||||
(call-with-temporary-directory
|
||||
|
|
Loading…
Reference in a new issue