diff options
Diffstat (limited to 'test/lisp/emacs-lisp')
-rw-r--r-- | test/lisp/emacs-lisp/benchmark-tests.el | 4 | ||||
-rw-r--r-- | test/lisp/emacs-lisp/find-func-tests.el | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/test/lisp/emacs-lisp/benchmark-tests.el b/test/lisp/emacs-lisp/benchmark-tests.el index 99b5b142c37..7fe3be2157f 100644 --- a/test/lisp/emacs-lisp/benchmark-tests.el +++ b/test/lisp/emacs-lisp/benchmark-tests.el @@ -25,8 +25,8 @@ (ert-deftest benchmark-tests () ;; Avoid fork failures on Cygwin. See bug#62450 and etc/PROBLEMS ;; ("Fork failures in a build with native compilation"). - (skip-unless (not (and (eq system-type 'cygwin) - (featurep 'native-compile)))) + (skip-when (and (eq system-type 'cygwin) + (featurep 'native-compile))) (let (str t-long t-short m) (should (consp (benchmark-run nil (setq m (1+ 0))))) (should (consp (benchmark-run 1 (setq m (1+ 0))))) diff --git a/test/lisp/emacs-lisp/find-func-tests.el b/test/lisp/emacs-lisp/find-func-tests.el index 7251b76157b..59ecb5ab187 100644 --- a/test/lisp/emacs-lisp/find-func-tests.el +++ b/test/lisp/emacs-lisp/find-func-tests.el @@ -32,7 +32,7 @@ (ert-deftest find-func-tests--library-completion () ;bug#43393 ;; FIXME: How can we make this work in batch (see also ;; `mule-cmds--test-universal-coding-system-argument')? - ;; (skip-unless (not noninteractive)) + ;; (skip-when noninteractive) ;; Check that `partial-completion' works when completing library names. (should (equal "org/org" (ert-simulate-keys |