From: Stefan Kangas Date: Wed, 19 Oct 2022 14:15:02 +0000 (+0200) Subject: ; Delete file after wallpaper test X-Git-Tag: emacs-29.0.90~1616^2~535 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=b96f441139e09d48880e1f20ad4237400529ac5f;p=emacs.git ; Delete file after wallpaper test * test/lisp/image/wallpaper-tests.el (wallpaper-set/calls-init-action): Don't leave temp file behind. --- diff --git a/test/lisp/image/wallpaper-tests.el b/test/lisp/image/wallpaper-tests.el index cb6818f8c1b..ab980a11bb6 100644 --- a/test/lisp/image/wallpaper-tests.el +++ b/test/lisp/image/wallpaper-tests.el @@ -99,9 +99,16 @@ ("touch" "touch" fil :init-action (lambda () (setq called t))))) (wallpaper-command (wallpaper--find-command)) - (wallpaper-command-args (wallpaper--find-command-args))) + (wallpaper-command-args (wallpaper--find-command-args)) + (start (time-convert nil 'integer)) + (timeout 3) process) (should (functionp (wallpaper-setter-init-action wallpaper--current-setter))) - (wallpaper-set fil-jpg) + (setq process (wallpaper-set fil-jpg)) + ;; Wait for "touch" process to exit so temp file is removed. + (while (and (< (- (time-convert nil 'integer) start) + timeout) + (process-live-p process)) + (sit-for 0.01)) (should called))))) (ert-deftest wallpaper-set/calls-wallpaper-set-function ()