etl/test/list_test_files.bat
2024-08-21 18:48:56 +01:00

11 lines
137 B
Batchfile

@echo off
setlocal enabledelayedexpansion
> test_file_list.txt (
for %%f in (test_*.cpp) do (
echo %%~nxf
)
)
endlocal