]> git.eshelyaron.com Git - emacs.git/commitdiff
Skip failing cperl test on hydra
authorGlenn Morris <rgm@gnu.org>
Tue, 8 Sep 2020 14:43:53 +0000 (07:43 -0700)
committerGlenn Morris <rgm@gnu.org>
Tue, 8 Sep 2020 15:55:23 +0000 (08:55 -0700)
* test/lisp/progmodes/cperl-mode-tests.el (cperl-mode-test-bug-10483):
Skip on hydra.nixos.org.

test/lisp/progmodes/cperl-mode-tests.el

index 4e477a40e8f2c2403f32112d3e0a51406780f448..2eaf633d175cbfa58c06edbb27bc22405c22108a 100644 (file)
@@ -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))