[sqlite] test fixture tcl errors on Windows

2007-04-24 Thread Dennis Cote
I'm getting a strange failure of the test suite on Windows (XP all updates). The exclusive2 test is getting a permission denied error when deleting a file. I can manually delete the file and the tclsh can execute the same file delete command if I enter it manually. $ ./testfixture.exe

Re: [sqlite] test fixture tcl errors on Windows

2007-04-24 Thread drh
Dennis Cote [EMAIL PROTECTED] wrote: I'm getting a strange failure of the test suite on Windows (XP all updates). exclusive2-2.8... Ok c:\SQLite\SQLiteV3\build\testfixture.exe: error deleting test.db: permission denied while executing file delete -force test.db

Re: [sqlite] test fixture tcl errors on Windows

2007-04-24 Thread Dennis Cote
[EMAIL PROTECTED] wrote: My guess is that your virus scanning software is opening the test.db file as sson as SQLite closes it, in order to check it for new viruses. The test script tries to delete the file right after closing it, but it can't because the virus scanner has it open. I don't

Re: [sqlite] test fixture tcl errors on Windows

2007-04-24 Thread Dennis Jenkins
Dennis Cote wrote: I don't know enough TCL to know if there is a subtle bug here or not. I suspect that perhaps the file isn't really being closed until the script exits.Does this seem possible? Dennis Cote Get filemon from www.sysinternals.com. Set a filter to monitor all files in the

Re: [sqlite] test fixture tcl errors on Windows

2007-04-24 Thread Joe Wilson
The test script itself has the test.db open, and as result Windows cannot delete an open file. It worked on UNIX because you can delete anything at any time whether it is open, running, locked or whatever. If you apply this patch, exclusive2.test will run to completion on cygwin without error.

Re: [sqlite] test fixture tcl errors on Windows

2007-04-24 Thread Joe Wilson
a better patch... Index: test/exclusive2.test === RCS file: /sqlite/sqlite/test/exclusive2.test,v retrieving revision 1.4 diff -u -3 -p -r1.4 exclusive2.test --- test/exclusive2.test16 Apr 2007 15:02:20 - 1.4 +++