Sept. 2, 2025
7:37 a.m.
eric pouech (@epo) commented about programs/cmd/tests/test_builtins.cmd: > if not "%1"=="" goto :CheckFileSize > goto :eof > > +:CompareFileSizes 1) it's overkill to test if files exist 2) why not using only (untested): ``` if "%~z1"=="%~z2" (echo passed) else (echo failed) goto :eof ``` (and there's no need to print the filenames) -- https://gitlab.winehq.org/wine/wine/-/merge_requests/8874#note_114493