From: Glenn Morris Date: Tue, 23 Jul 2013 19:54:01 +0000 (-0400) Subject: * inotify-test.el (inotify-file-watch-simple): Delete temp-file when done. X-Git-Tag: emacs-24.3.90~173^2^2~42^2~45^2~387^2~1718 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=97afc49a1a5e6482431ab7c6301561936fdcb4b5;p=emacs.git * inotify-test.el (inotify-file-watch-simple): Delete temp-file when done. --- diff --git a/test/ChangeLog b/test/ChangeLog index e4890aeac14..0626d92b207 100644 --- a/test/ChangeLog +++ b/test/ChangeLog @@ -1,5 +1,8 @@ 2013-07-23 Glenn Morris + * automated/inotify-test.el (inotify-file-watch-simple): + Delete temp-file when done. + * automated/subword-tests.el: Require subword. 2013-07-22 Stefan Monnier diff --git a/test/automated/inotify-test.el b/test/automated/inotify-test.el index b4d20cf4fb1..97d78dcb58e 100644 --- a/test/automated/inotify-test.el +++ b/test/automated/inotify-test.el @@ -56,8 +56,10 @@ (insert "Foo\n")) (sit-for 5) ;; Hacky. Wait for 5s until events are processed (should (> events 0))) - (inotify-rm-watch wd))))) + (inotify-rm-watch wd) + (delete-file temp-file))))) ) (provide 'inotify-tests) + ;;; inotify-tests.el ends here.