Revert "Make recent dired tests check for external executables"

This reverts commit 98a17f30b8.

Reverting parent commit.
This commit is contained in:
Lars Ingebrigtsen 2021-09-21 19:04:46 +02:00
parent aaf4bb1f07
commit ff714466e7

View file

@ -160,16 +160,12 @@
(ert-deftest dired-test-bug47058-tar ()
"test for https://debbugs.gnu.org/47058 ."
(skip-unless (and (executable-find "tar")
(executable-find "gzip")))
(dired-test-bug47058-fn "tar -cf - %i | gzip -c9 > %o"
"gzip -dc %i | tar -xf - -C %c"
".tar.gz"))
(ert-deftest dired-test-bug47058-zip ()
"test for https://debbugs.gnu.org/47058 ."
(skip-unless (and (executable-find "zip")
(executable-find "unzip")))
(dired-test-bug47058-fn "zip %o -r --filesync %i"
"unzip -o -d %o %i"
".zip"))