aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/test/all.bat
blob: 4debaa96fca08c1e8322f511e5e51495204f8c4e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
@setlocal enabledelayedexpansion

@if [%1] == [] goto exit_with_usage

@set utils_dir=%~1

nist-sp-800-38a.py --path "%utils_dir%" || exit /b !errorlevel!
cavp.py            --path "%utils_dir%" || exit /b !errorlevel!
file.py            --path "%utils_dir%" || exit /b !errorlevel!

@goto :eof

:exit_with_usage
@echo usage: %0 UTILS_DIR >&2
@exit /b 1