aboutsummaryrefslogtreecommitdiff
path: root/tester.bat
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2012-09-13 12:00:30 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2012-09-13 12:00:30 +0200
commita906ffae1092f03c992b457e39fe25ab63d28c2a (patch)
treeded28c3664bc724b564193e746ae132f79316c78 /tester.bat
parent1945a7ee2d64fffd19a839bbeb619cba2d287837 (diff)
Only look for SQL files in test*.sql form instead of *.sql
Diffstat (limited to 'tester.bat')
-rw-r--r--tester.bat4
1 files changed, 2 insertions, 2 deletions
diff --git a/tester.bat b/tester.bat
index fdd408c..9cee8ea 100644
--- a/tester.bat
+++ b/tester.bat
@@ -26,8 +26,8 @@ if "_%3_" == "_Win32_" (
rem Globbing returns files in alphabetic order.
rem
-if exist *.sql (
- for %%f in (*.sql) do (
+if exist test*.sql (
+ for %%f in (test*.sql) do (
call %topdir%\%1-driver.bat %%f
if errorlevel 1 goto error
)