mirror of
https://github.com/curl/curl.git
synced 2026-06-18 21:25:43 +03:00
checksrc.bat: Added tests/server directory support
In addition to commit 83b174b3f0 and following the recent changes.
This commit is contained in:
parent
066b224672
commit
6264f617f8
1 changed files with 6 additions and 0 deletions
|
|
@ -123,6 +123,12 @@ rem ***************************************************************************
|
|||
for /f "delims=" %%i in ('dir "%SRC_DIR%\tests\unit\*.c.*" /b 2^>NUL') do @perl "%SRC_DIR%\lib\checksrc.pl" "-D%SRC_DIR%\tests\unit" "%%i"
|
||||
for /f "delims=" %%i in ('dir "%SRC_DIR%\tests\unit\*.h.*" /b 2^>NUL') do @perl "%SRC_DIR%\lib\checksrc.pl" "-D%SRC_DIR%\tests\unit" "%%i"
|
||||
)
|
||||
|
||||
rem Check the tests\server directory
|
||||
if exist %SRC_DIR%\tests\server (
|
||||
for /f "delims=" %%i in ('dir "%SRC_DIR%\tests\server\*.c.*" /b 2^>NUL') do @perl "%SRC_DIR%\lib\checksrc.pl" "-D%SRC_DIR%\tests\server" "%%i"
|
||||
for /f "delims=" %%i in ('dir "%SRC_DIR%\tests\server\*.h.*" /b 2^>NUL') do @perl "%SRC_DIR%\lib\checksrc.pl" "-D%SRC_DIR%\tests\server" "%%i"
|
||||
)
|
||||
)
|
||||
|
||||
goto success
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue