Lines Matching +full:runs +full:- +full:on
1 #!/bin/bash -eu
3 # ssl-opt-in-docker.sh
6 # -------
7 # This runs ssl-opt.sh in a Docker container.
10 # https://github.com/Mbed-TLS/mbedtls-test/blob/master/README.md#quick-start
11 # for the set of Docker images we use on the CI.
14 # ---------------
21 # - scripts/docker_env.sh for general Docker prerequisites and other information.
22 # - ssl-opt.sh for notes about invocation of that script.
25 # SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
29 case "${OPENSSL:-default}" in
30 "legacy") export OPENSSL="/usr/local/openssl-1.0.1j/bin/openssl";;
31 "next") export OPENSSL="/usr/local/openssl-1.1.1a/bin/openssl";;
35 case "${GNUTLS_CLI:-default}" in
36 "legacy") export GNUTLS_CLI="/usr/local/gnutls-3.3.8/bin/gnutls-cli";;
37 "next") export GNUTLS_CLI="/usr/local/gnutls-3.7.2/bin/gnutls-cli";;
41 case "${GNUTLS_SERV:-default}" in
42 "legacy") export GNUTLS_SERV="/usr/local/gnutls-3.3.8/bin/gnutls-serv";;
43 "next") export GNUTLS_SERV="/usr/local/gnutls-3.7.2/bin/gnutls-serv";;
48 -e P_SRV \
49 -e P_CLI \
50 -e P_PXY \
51 -e GNUTLS_CLI \
52 -e GNUTLS_SERV \
53 -e OPENSSL \
54 tests/ssl-opt.sh \