On Thu, Jan 13, 2022 at 03:14:55PM -0600, William A Rowe Jr wrote: > I'm trying to work out how trunk on httpd test framework is busted on > Windows, irrespective > of using an msys2, sfl-ubuntu, or older win32 native svn build. The > problem always devolves > to something like shown below; > > svn co -q -r 1896892 > https://svn.apache.org/repos/asf/httpd/test/framework/trunk > httpdtest-1896892 > svn: E000013: Can't move > '/c/Users/wrowe/dev/oss-httpd-build/src/httpdtest-1896892/.svn/tmp/svn-yIVLxQ' > to > '/c/Users/wrowe/dev/oss-httpd-build/src/httpdtest-1896892/.svn/pristine/b4/b4648076d6b2a3dfab889875d892252d5ed2594c.svn-base': > Permission denied
This has nothing to do with the server, it is some problem with the working copy which is being checked out. It looks as if MoveFileExW is failing with EACCESS, see here: https://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_subr/io.c?view=annotate#l4529 Though depending on which version of svn you have installed, svn might be calling directly into APR instead and fail there. > make: *** [../mak/Makefile.download:36: httpdtest-1896892] Error 1 > > The file it is attempting to move to already exists (why?) Any > guidance is appreciated, since > it is painful to grab this on a native ubuntu vm and slough it back to > windows to be able > to run the framework on windows. >