http://bugzilla.wpkg.org/show_bug.cgi?id=223 --- Comment #1 from Stefan Pendl <pendl2megabit at yahoo.de> --- Some additional thoughts: If one likes to only clear the logs and results of a particular test he can do it this way: testone.cmd ... clear the logs and results folder before executing the test :standard REM clear old logs and results del /F /Q "%~dp0logs\*-%1-%2-*" >NUL 2>&1 del /F /Q "%~dp0results\%1-%2*" >NUL 2>&1 echo Doing %1 %2... ---- It might be handy to introduce the following command script to initialize a test session: testinit.cmd @echo off REM clear old logs and results del /F /Q "%~dp0logs\*" >NUL 2>&1 del /F /Q "%~dp0results\*" >NUL 2>&1 copy /Y /V "%~dp0\wpkgempty.xml" "%~dp0\wpkg.xml" --- Stefan -- Configure bugmail: http://bugzilla.wpkg.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug. |