diff options
author | Brent Cook <busterb@gmail.com> | 2022-08-29 08:42:43 -0500 |
---|---|---|
committer | Brent Cook <busterb@gmail.com> | 2022-08-29 09:06:06 -0500 |
commit | ed9359727a502d5ec5162e4017f76ffccf6aaa79 (patch) | |
tree | 6a56c1f4bc7ed9948e02ebcfecc58849cda8a6db /tests/quictest.bat | |
parent | 08895e84976efd5f63bc515856efe43aad5abffb (diff) | |
download | portable-ed9359727a502d5ec5162e4017f76ffccf6aaa79.tar.gz portable-ed9359727a502d5ec5162e4017f76ffccf6aaa79.tar.bz2 portable-ed9359727a502d5ec5162e4017f76ffccf6aaa79.zip |
build updates for latest upstream
Diffstat (limited to 'tests/quictest.bat')
-rw-r--r-- | tests/quictest.bat | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/quictest.bat b/tests/quictest.bat new file mode 100644 index 0000000..cfbf2cd --- /dev/null +++ b/tests/quictest.bat | |||
@@ -0,0 +1,14 @@ | |||
1 | @echo off | ||
2 | setlocal enabledelayedexpansion | ||
3 | REM quictest.bat | ||
4 | |||
5 | set quictest_bin=%1 | ||
6 | set quictest_bin=%quictest_bin:/=\% | ||
7 | if not exist %quictest_bin% exit /b 1 | ||
8 | |||
9 | %quictest_bin% %srcdir%\server.pem %srcdir%\server.pem %srcdir%\ca.pem | ||
10 | if !errorlevel! neq 0 ( | ||
11 | exit /b 1 | ||
12 | ) | ||
13 | |||
14 | endlocal | ||