diff options
| author | Michael Albinus | 2024-12-07 15:14:00 +0100 |
|---|---|---|
| committer | Michael Albinus | 2024-12-07 15:14:00 +0100 |
| commit | 69191aeefdb0fec0722dbbe29a72ad2af9053f87 (patch) | |
| tree | a8191b146cef05b03b4e81e2a1359e1b9dbb7917 | |
| parent | c87c5b95e1309b59b6cb07d07a20234a74a73f35 (diff) | |
| download | emacs-69191aeefdb0fec0722dbbe29a72ad2af9053f87.tar.gz emacs-69191aeefdb0fec0722dbbe29a72ad2af9053f87.zip | |
* test/lisp/wdired-tests.el (wdired-test-bug34915): Fix for *BSD.
(Bug#74721)
| -rw-r--r-- | test/lisp/wdired-tests.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/lisp/wdired-tests.el b/test/lisp/wdired-tests.el index 7c7026354b8..30622700939 100644 --- a/test/lisp/wdired-tests.el +++ b/test/lisp/wdired-tests.el | |||
| @@ -142,7 +142,8 @@ wdired-get-filename before and after editing." | |||
| 142 | (ert-with-temp-directory test-dir | 142 | (ert-with-temp-directory test-dir |
| 143 | (let* ((dired-listing-switches "-Fl") | 143 | (let* ((dired-listing-switches "-Fl") |
| 144 | (dired-ls-F-marks-symlinks | 144 | (dired-ls-F-marks-symlinks |
| 145 | (or (eq system-type 'darwin) | 145 | (or (and (memq system-type '(berkeley-unix darwin)) |
| 146 | (not (string= insert-directory-program "gls"))) | ||
| 146 | (featurep 'ls-lisp))) | 147 | (featurep 'ls-lisp))) |
| 147 | (buf (find-file-noselect test-dir)) | 148 | (buf (find-file-noselect test-dir)) |
| 148 | proc) | 149 | proc) |