]> git.eshelyaron.com Git - emacs.git/commitdiff
* inotify-test.el (inotify-file-watch-simple): Delete temp-file when done.
authorGlenn Morris <rgm@gnu.org>
Tue, 23 Jul 2013 19:54:01 +0000 (15:54 -0400)
committerGlenn Morris <rgm@gnu.org>
Tue, 23 Jul 2013 19:54:01 +0000 (15:54 -0400)
test/ChangeLog
test/automated/inotify-test.el

index e4890aeac14b3a7a21d923378f1320bd8b5a2e4d..0626d92b207c2b404c7a07fbf9c27e4507066780 100644 (file)
@@ -1,5 +1,8 @@
 2013-07-23  Glenn Morris  <rgm@gnu.org>
 
+       * automated/inotify-test.el (inotify-file-watch-simple):
+       Delete temp-file when done.
+
        * automated/subword-tests.el: Require subword.
 
 2013-07-22  Stefan Monnier  <monnier@iro.umontreal.ca>
index b4d20cf4fb17ffab04785df51ba1beb738160a91..97d78dcb58e5060b85654ed1f2129ef08a15903d 100644 (file)
                (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.