aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/test/all.bat
blob: 749763794ea6dc8fed923359203900a793e36c3d (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.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: %~nx0 UTILS_DIR >&2
@exit /b 1