]> git.eshelyaron.com Git - emacs.git/commitdiff
cperl-mode: Fix a test to ensure cperl-mode is active
authorHarald Jörg <haj@posteo.de>
Tue, 6 Oct 2020 01:39:55 +0000 (03:39 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Tue, 6 Oct 2020 01:39:55 +0000 (03:39 +0200)
* test/lisp/progmodes/cperl-mode-tests.el
(cperl-mode-test-indent-exp): Make sure that cperl-mode is active
for testing 'cperl-indent-exp', also skip this test under
perl-mode.

* test/lisp/progmodes/cperl-mode-resources/cperl-indent-exp.pl:
Eliminate dependency on unrelated customizable variables (bug#10483).

test/lisp/progmodes/cperl-mode-resources/cperl-indent-exp.pl
test/lisp/progmodes/cperl-mode-tests.el

index 4a9842ffa56f354d6996581a846d17d7b460af0b..8c1883a10f17d1b42926f80141cb16049f3e6814 100644 (file)
@@ -26,7 +26,7 @@ say "boring loop";
 }
 continue
 {
-last; # no endless loop, though
+last;
 }
 }
 # -------- while loop: expected output --------
@@ -34,7 +34,7 @@ last; # no endless loop, though
   while (1) {
     say "boring loop";
   } continue {
-    last; # no endless loop, though
+    last;
   }
 }
 # -------- while loop: end --------
index f0ff8e90052090ea4f1eaf210af52cbd952cfb66..20be7ed68cc5da2f74fc10e5bee29bf9288daef5 100644 (file)
@@ -148,6 +148,7 @@ under timeout control."
 These exercise some standard blocks and also the special
 treatment for Perl expressions where a closing paren isn't the
 end of the statement."
+  (skip-unless (eq cperl-test-mode #'cperl-mode))
   (let ((file (expand-file-name "cperl-indent-exp.pl"
                                 cperl-mode-tests-data-directory)))
     (with-temp-buffer
@@ -166,6 +167,7 @@ end of the statement."
               got)
           (with-temp-buffer
             (insert code)
+           (cperl-mode)
             (goto-char (point-min))
             (cperl-indent-exp) ; here we go!
             (setq expected (concat "test case " name ":\n" expected))