From 2fc42fab7f569aded562e96d6dd424ff8563c711 Mon Sep 17 00:00:00 2001 From: Leonid Yuriev Date: Thu, 20 Sep 2018 23:03:30 +0300 Subject: [PATCH] mdbx-test: add simple loop.bat for Windows. --- test/loop.bat | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100755 test/loop.bat diff --git a/test/loop.bat b/test/loop.bat new file mode 100755 index 00000000..a3bcd56f --- /dev/null +++ b/test/loop.bat @@ -0,0 +1,15 @@ +@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