mirror of
https://github.com/isar/libmdbx.git
synced 2024-10-30 23:39:19 +08:00
16 lines
248 B
Batchfile
16 lines
248 B
Batchfile
|
@echo off
|
||
|
|
||
|
del test.db test.db-lck
|
||
|
|
||
|
:loop
|
||
|
|
||
|
mdbx_test.exe --pathname=test.db --dont-cleanup-after basic > test.log
|
||
|
if errorlevel 1 goto fail
|
||
|
|
||
|
mdbx_chk.exe -nvvv test.db > chk.log
|
||
|
if errorlevel 1 goto fail
|
||
|
goto loop
|
||
|
|
||
|
:fail
|
||
|
echo FAILED
|