diff options
| author | cvs2svn <admin@example.com> | 2023-07-15 19:29:46 +0000 |
|---|---|---|
| committer | cvs2svn <admin@example.com> | 2023-07-15 19:29:46 +0000 |
| commit | 72cc860132e5b7971e495ba621dcd0713b5dd801 (patch) | |
| tree | eb2977d6a31db45cc5481c643fa2a77238fa93bb /src/regress/lib/libssl/interop/session | |
| parent | 0d87a20f1d7f7c6ae9a6cbb5bc3c2235ee3fe18a (diff) | |
| download | openbsd-tb_20230715.tar.gz openbsd-tb_20230715.tar.bz2 openbsd-tb_20230715.zip | |
This commit was manufactured by cvs2git to create tag 'tb_20230715'.tb_20230715
Diffstat (limited to 'src/regress/lib/libssl/interop/session')
| -rw-r--r-- | src/regress/lib/libssl/interop/session/Makefile | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/src/regress/lib/libssl/interop/session/Makefile b/src/regress/lib/libssl/interop/session/Makefile deleted file mode 100644 index f5858eaba0..0000000000 --- a/src/regress/lib/libssl/interop/session/Makefile +++ /dev/null | |||
| @@ -1,46 +0,0 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.8 2023/02/01 16:03:47 tb Exp $ | ||
| 2 | |||
| 3 | LIBRARIES = libressl | ||
| 4 | .if exists(/usr/local/bin/eopenssl11) | ||
| 5 | LIBRARIES += openssl11 | ||
| 6 | .endif | ||
| 7 | .if exists(/usr/local/bin/eopenssl30) | ||
| 8 | #LIBRARIES += openssl30 | ||
| 9 | .endif | ||
| 10 | |||
| 11 | run-session-client-libressl-server-libressl \ | ||
| 12 | run-session-client-libressl-server-openssl11 \ | ||
| 13 | run-session-client-openssl11-server-libressl \ | ||
| 14 | run-session-client-openssl11-server-openssl11: | ||
| 15 | # TLS 1.3 needs some extra setup for session reuse | ||
| 16 | @echo DISABLED | ||
| 17 | |||
| 18 | .for clib in ${LIBRARIES} | ||
| 19 | .for slib in ${LIBRARIES} | ||
| 20 | |||
| 21 | REGRESS_TARGETS += run-session-client-${clib}-server-${slib} | ||
| 22 | |||
| 23 | run-session-client-${clib}-server-${slib}: \ | ||
| 24 | 127.0.0.1.crt ../${clib}/client ../${slib}/server | ||
| 25 | LD_LIBRARY_PATH=/usr/local/lib/e${slib} \ | ||
| 26 | ../${slib}/server >${@:S/^run/server/}.out \ | ||
| 27 | -ss \ | ||
| 28 | 127.0.0.1 0 | ||
| 29 | LD_LIBRARY_PATH=/usr/local/lib/e${clib} \ | ||
| 30 | ../${clib}/client >${@:S/^run/client/}.out \ | ||
| 31 | -ss \ | ||
| 32 | `sed -n 's/listen sock: //p' ${@:S/^run/server/}.out` | ||
| 33 | grep '^success$$' ${@:S/^run/server/}.out || \ | ||
| 34 | { sleep 1; grep '^success$$' ${@:S/^run/server/}.out; } | ||
| 35 | grep '^success$$' ${@:S/^run/client/}.out | ||
| 36 | grep '^session 2: new$$' ${@:S/^run/server/}.out | ||
| 37 | grep '^session 2: new$$' ${@:S/^run/client/}.out | ||
| 38 | grep '^session 1: reuse$$' ${@:S/^run/server/}.out | ||
| 39 | grep '^session 1: reuse$$' ${@:S/^run/client/}.out | ||
| 40 | grep '^session 0: reuse$$' ${@:S/^run/server/}.out | ||
| 41 | grep '^session 0: reuse$$' ${@:S/^run/client/}.out | ||
| 42 | |||
| 43 | .endfor | ||
| 44 | .endfor | ||
| 45 | |||
| 46 | .include <bsd.regress.mk> | ||
