Hello,
I am trying to do testing on 2.5" hard drives connected through a USB to PATA adapter (USB 2.0). I am running only the drive test at a 100% duty cycle. For some reason, I'm getting "data verify failure" on average about once few minutes. So, I created a .cmd script that copies and verifies the same data file that BurnInTest generates in a continuous loop and get no errors after hours of testing. I've tried three different adapters from different manufacturers, as well as a number of different hard drives. Using 5.3 build 1014.
The test script I made looks like this:
:start
xcopy /v /y bittestE00001.bin e:
fc/b crash.bin e:\crash.bin
if errorlevel 1 goto error
goto start
:error
ECHO an error occurred!
Any thoughts?
Thanks.
I am trying to do testing on 2.5" hard drives connected through a USB to PATA adapter (USB 2.0). I am running only the drive test at a 100% duty cycle. For some reason, I'm getting "data verify failure" on average about once few minutes. So, I created a .cmd script that copies and verifies the same data file that BurnInTest generates in a continuous loop and get no errors after hours of testing. I've tried three different adapters from different manufacturers, as well as a number of different hard drives. Using 5.3 build 1014.
The test script I made looks like this:
:start
xcopy /v /y bittestE00001.bin e:
fc/b crash.bin e:\crash.bin
if errorlevel 1 goto error
goto start
:error
ECHO an error occurred!
Any thoughts?
Thanks.
Comment