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.sh | |
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.sh')
-rwxr-xr-x | tests/quictest.sh | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/quictest.sh b/tests/quictest.sh new file mode 100755 index 0000000..cc1982f --- /dev/null +++ b/tests/quictest.sh | |||
@@ -0,0 +1,13 @@ | |||
1 | #!/bin/sh | ||
2 | set -e | ||
3 | |||
4 | quictest_bin=./quictest | ||
5 | if [ -e ./quictest.exe ]; then | ||
6 | quictest_bin=./quictest.exe | ||
7 | fi | ||
8 | |||
9 | if [ -z $srcdir ]; then | ||
10 | srcdir=. | ||
11 | fi | ||
12 | |||
13 | $quictest_bin $srcdir/server.pem $srcdir/server.pem $srcdir/ca.pem | ||