mirror of
https://github.com/open-quantum-safe/liboqs.git
synced 2025-10-05 00:05:12 -04:00
* Added example_kem/sig and speed_kem/sig to Visual Studio. * Check generated KAT files in appveyor.
14 lines
259 B
Batchfile
14 lines
259 B
Batchfile
@echo off
|
|
|
|
REM compares KAT files for Windows-enabled KEM algs
|
|
for /R src\kem\ %%K in (*.kat) DO (
|
|
if exist kat_kem_rsp\%%~nxK (
|
|
FC %%K kat_kem_rsp\%%~nxK >nul 2>nul
|
|
if errorlevel 1 (
|
|
echo %%~nxK not matching
|
|
exit /b 1
|
|
)
|
|
)
|
|
)
|
|
|