Hi Bram.
2016/1/17 Sun 6:03:25 UTC+9 Bram Moolenaar wrote:
> Patch 7.4.1109 (after 7.4.1107)
> Problem: MS-Windows doesn't have rmdir().
> Solution: Add mch_rmdir().
> Files: src/os_win32.c, src/proto/os_win32/pro
After 7.4.1109 (and 7.4.1107), "nmake -f Make_dos.make clean" leaves a directory
created by the newly added test, and the test might fail when running a second
time. The following patch fixes it:
--- a/src/testdir/Make_dos.mak
+++ b/src/testdir/Make_dos.mak
@@ -89,6 +89,7 @@ clean:
-if exist Xdir1 rd /s /q Xdir1
-if exist Xfind rd /s /q Xfind
-del X*
+ -for /d %i in (X*) do @rmdir /s/q %i
-if exist viminfo del viminfo
-if exist test.log del test.log
-if exist messages del messages
Regards,
Ken Takata
--
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
---
You received this message because you are subscribed to the Google Groups
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.