all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* bug#72073: [PATCH] Fix wdired-test-unfinished-edit-01 when temp dirname contains "foo"
@ 2024-07-12 10:02 Peter Oliver
  2024-07-13 10:38 ` Eli Zaretskii
  0 siblings, 1 reply; 2+ messages in thread
From: Peter Oliver @ 2024-07-12 10:02 UTC (permalink / raw)
  To: 72073

[-- Attachment #1: Type: text/plain, Size: 216 bytes --]

The attached patch fixes an intermittent test failure, when the randomly-generated directory name used in the test happens to contain the substring “foo” (which is something the test looks for).

-- 
Peter Oliver

[-- Attachment #2: Type: text/plain, Size: 1159 bytes --]

From 90734f5a3ba9998886e0b03382878a2fb514d015 Mon Sep 17 00:00:00 2001
From: Peter Oliver <git@mavit.org.uk>
Date: Fri, 12 Jul 2024 10:52:23 +0100
Subject: [PATCH] Fix wdired-test-unfinished-edit-01 when temp dirname contains
 "foo"

* test/lisp/wdired-tests.el (wdired-test-unfinished-edit-01): Don't
modify the random directory name if, by chance, it happens to contain
the substring "foo".
---
 test/lisp/wdired-tests.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/test/lisp/wdired-tests.el b/test/lisp/wdired-tests.el
index f7bff743058..f6d2194e998 100644
--- a/test/lisp/wdired-tests.el
+++ b/test/lisp/wdired-tests.el
@@ -114,7 +114,7 @@ wdired-test-unfinished-edit-01
     (setq test-dir (file-truename test-dir))
     (let* ((test-file (concat (file-name-as-directory test-dir) "foo.c"))
            (replace "bar")
-           (new-file (string-replace "foo" replace test-file)))
+           (new-file (string-replace "/foo" (concat "/" replace) test-file)))
       (write-region "" nil test-file nil 'silent)
       (let ((buf (find-file-noselect test-dir)))
         (unwind-protect
-- 
2.45.2


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* bug#72073: [PATCH] Fix wdired-test-unfinished-edit-01 when temp dirname contains "foo"
  2024-07-12 10:02 bug#72073: [PATCH] Fix wdired-test-unfinished-edit-01 when temp dirname contains "foo" Peter Oliver
@ 2024-07-13 10:38 ` Eli Zaretskii
  0 siblings, 0 replies; 2+ messages in thread
From: Eli Zaretskii @ 2024-07-13 10:38 UTC (permalink / raw)
  To: Peter Oliver; +Cc: 72073-done

> Date: Fri, 12 Jul 2024 11:02:24 +0100 (BST)
> From: Peter Oliver <p.d.oliver@mavit.org.uk>
> 
> The attached patch fixes an intermittent test failure, when the randomly-generated directory name used in the test happens to contain the substring “foo” (which is something the test looks for).

Thanks, installed on the emacs-30 release branch, and closing the bug.





^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2024-07-13 10:38 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-07-12 10:02 bug#72073: [PATCH] Fix wdired-test-unfinished-edit-01 when temp dirname contains "foo" Peter Oliver
2024-07-13 10:38 ` Eli Zaretskii

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.