]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix dired-test-bug27631 on MS-Windows
authorTino Calancha <tino.calancha@gmail.com>
Fri, 4 Aug 2017 13:35:29 +0000 (22:35 +0900)
committerTino Calancha <tino.calancha@gmail.com>
Fri, 4 Aug 2017 13:35:29 +0000 (22:35 +0900)
Skip the test if Dired use 'ls' emulation with lisp.  The same
bug is tested in their respective test suites: ls-lisp-tests.el
and em-ls-tests.el.
* test/lisp/dired-tests.el (dired-test-bug27631): Skip test if 'ls-lisp'
or 'eshell' features are enabled.

test/lisp/dired-tests.el

index 02dbf263b9a6d382b4c3e7873fa950ccf7e1db87..b14bbc63609759c456c99a58b31929b0e8162e1d 100644 (file)
 
 (ert-deftest dired-test-bug27631 ()
   "Test for http://debbugs.gnu.org/27631 ."
+  ;; For dired using 'ls' emulation we test for this bug in
+  ;; ls-lisp-tests.el and em-ls-tests.el.
+  (skip-unless (and (not (featurep 'ls-lisp))
+                    (not (featurep 'eshell))))
   (let* ((dir (make-temp-file "bug27631" 'dir))
          (dir1 (expand-file-name "dir1" dir))
          (dir2 (expand-file-name "dir2" dir))