#!/bin/sh # # Copyright 2020-2024 The OpenSSL Project Authors. All Rights Reserved. # # Licensed under the Apache License 2.0 (the "License"). You may not use # this file except in compliance with the License. You can obtain a copy # in the file LICENSE in the source distribution or at # https://www.openssl.org/source/license.html # # OpenSSL external testing using the GOST engine # set -e PWD="$(pwd)" SRCTOP="$(cd $SRCTOP; pwd)" BLDTOP="$(cd $BLDTOP; pwd)" if [ "$SRCTOP" != "$BLDTOP" ] ; then echo "Out of tree builds not supported with gost_engine test!" exit 1 fi O_EXE="$BLDTOP/apps" O_BINC="$BLDTOP/include" O_SINC="$SRCTOP/include" O_LIB="$BLDTOP" unset OPENSSL_CONF export PATH="$O_EXE:$PATH" export LD_LIBRARY_PATH="$O_LIB:$LD_LIBRARY_PATH" export OPENSSL_ROOT_DIR="$O_LIB" # Check/Set openssl version OPENSSL_VERSION=`openssl version | cut -f 2 -d ' '` echo "------------------------------------------------------------------" echo "Testing OpenSSL using GOST engine:" echo " CWD: $PWD" echo " SRCTOP: $SRCTOP" echo " BLDTOP: $BLDTOP" echo " OPENSSL_ROOT_DIR: $OPENSSL_ROOT_DIR" echo " OpenSSL version: $OPENSSL_VERSION" echo "------------------------------------------------------------------" cmake $SRCTOP/gost-engine -DOPENSSL_ROOT_DIR="$OPENSSL_ROOT_DIR" -DOPENSSL_ENGINES_DIR="$OPENSSL_ROOT_DIR/engines" make export CTEST_OUTPUT_ON_FAILURE=1 export HARNESS_OSSL_PREFIX='' export OPENSSL_ENGINES="$PWD/bin" export OPENSSL_APP="$O_EXE/openssl" make test make tcl_tests