From 7865b4044d7520bcf4053ef5d763019dae499a08 Mon Sep 17 00:00:00 2001 From: Glenn Morris Date: Tue, 8 Sep 2020 07:43:53 -0700 Subject: [PATCH] Skip failing cperl test on hydra * test/lisp/progmodes/cperl-mode-tests.el (cperl-mode-test-bug-10483): Skip on hydra.nixos.org. --- test/lisp/progmodes/cperl-mode-tests.el | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) 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)) -- 2.39.5