diff options
author | Juri Linkov <juri@linkov.net> | 2019-02-03 23:00:29 +0200 |
---|---|---|
committer | Juri Linkov <juri@linkov.net> | 2019-02-03 23:00:29 +0200 |
commit | 4633b0ef3ff7fc8ac013e4236edf782fb3cadfb4 (patch) | |
tree | 86b978e4f2cd9f5fc9c6620a24b015856b004b0d /test/lisp/vc/diff-mode-tests.el | |
parent | b32ac17c32486d8fce0fb9ecd5e09fe324448d3d (diff) | |
download | emacs-4633b0ef3ff7fc8ac013e4236edf782fb3cadfb4.tar.gz emacs-4633b0ef3ff7fc8ac013e4236edf782fb3cadfb4.tar.bz2 emacs-4633b0ef3ff7fc8ac013e4236edf782fb3cadfb4.zip |
* lisp/tar-mode.el (tar-extract): Call tar--try-jka-compr (bug#34251)
* lisp/tar-mode.el (tar--try-jka-compr): New function copied from
archive-try-jka-compr.
* lisp/arc-mode.el (archive-try-jka-compr): Set buffer-multibyte to t
instead of let-binding coding-system-for-read to 'no-conversion.
* test/data/decompress/tg.tar.gz:
* test/data/decompress/zg.zip: New fixtures.
* test/lisp/arc-mode-tests.el (arc-mode-test-zip-extract-gz):
* test/lisp/tar-mode-tests.el (tar-mode-test-tar-extract-gz): New tests.
* test/lisp/vc/diff-mode-tests.el (diff-mode-test-font-lock)
(diff-mode-test-font-lock-syntax-one-line): Skip unless shell and
diff executables are found.
Diffstat (limited to 'test/lisp/vc/diff-mode-tests.el')
-rw-r--r-- | test/lisp/vc/diff-mode-tests.el | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/lisp/vc/diff-mode-tests.el b/test/lisp/vc/diff-mode-tests.el index 8e690548f05..8695d958bac 100644 --- a/test/lisp/vc/diff-mode-tests.el +++ b/test/lisp/vc/diff-mode-tests.el @@ -204,6 +204,8 @@ youthfulness (ert-deftest diff-mode-test-font-lock () "Check font-locking of diff hunks." + (skip-unless (executable-find shell-file-name)) + (skip-unless (executable-find diff-command)) (let ((default-directory diff-mode-tests--datadir) (old "hello_world.c") (new "hello_emacs.c") @@ -263,6 +265,8 @@ youthfulness (ert-deftest diff-mode-test-font-lock-syntax-one-line () "Check diff syntax highlighting for one line with no newline at end." + (skip-unless (executable-find shell-file-name)) + (skip-unless (executable-find diff-command)) (let ((default-directory diff-mode-tests--datadir) (old "hello_world_1.c") (new "hello_emacs_1.c") |