From: Glenn Morris Date: Tue, 8 Sep 2020 14:43:53 +0000 (-0700) Subject: Skip failing cperl test on hydra X-Git-Tag: emacs-28.0.90~6184 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=7865b4044d7520bcf4053ef5d763019dae499a08;p=emacs.git Skip failing cperl test on hydra * test/lisp/progmodes/cperl-mode-tests.el (cperl-mode-test-bug-10483): Skip on hydra.nixos.org. --- diff --git a/test/lisp/progmodes/cperl-mode-tests.el b/test/lisp/progmodes/cperl-mode-tests.el index 4e477a40e8f..2eaf633d175 100644 --- a/test/lisp/progmodes/cperl-mode-tests.el +++ b/test/lisp/progmodes/cperl-mode-tests.el @@ -110,11 +110,13 @@ indentation actually takes place.." (message "%s" (buffer-string))))) (ert-deftest cperl-mode-test-bug-10483 () - "Verifies that a piece of code which ends in a paren without a -statement terminato ron tne same line does not loop forever. The -test starts an asynchronous Emacs batch process under timeout -control." + "Check that indenting certain perl code does not loop forever. +This verifies that indenting a piece of code that ends in a paren +without a statement terminator on the same line does not loop +forever. The test starts an asynchronous Emacs batch process +under timeout control." (interactive) + (skip-unless (not (getenv "EMACS_HYDRA_CI"))) ; FIXME times out (let* ((emacs (concat invocation-directory invocation-name)) (test-function 'cperl-mode-test--run-bug-10483) (test-function-name (symbol-name test-function))