blob: 4c5384c0ccd966b53613c392e1d8c7acb5c3665e [file] [log] [blame]
Gilles Peskineca144592021-11-04 12:52:14 +01001#!/bin/sh
2
3# Run the shared library dynamic loading demo program.
4# This is only expected to work when Mbed TLS is built as a shared library.
5
6# Copyright The Mbed TLS Contributors
7# SPDX-License-Identifier: Apache-2.0
8#
9# Licensed under the Apache License, Version 2.0 (the "License"); you may
10# not use this file except in compliance with the License.
11# You may obtain a copy of the License at
12#
13# http://www.apache.org/licenses/LICENSE-2.0
14#
15# Unless required by applicable law or agreed to in writing, software
16# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
17# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18# See the License for the specific language governing permissions and
19# limitations under the License.
20
Gilles Peskinec25ae6f2023-07-25 19:53:04 +020021. "${0%/*}/../demo_common.sh"
Gilles Peskineca144592021-11-04 12:52:14 +010022
Gilles Peskinec25ae6f2023-07-25 19:53:04 +020023msg "Test the dynamic loading of libmbed*"
David Horstmann4dfa3682021-11-26 17:58:05 +000024
Gilles Peskinec25ae6f2023-07-25 19:53:04 +020025program="$programs_dir/test/dlopen"
26library_dir="$root_dir/library"
Gilles Peskineca144592021-11-04 12:52:14 +010027
28# ELF-based Unix-like (Linux, *BSD, Solaris, ...)
29if [ -n "${LD_LIBRARY_PATH-}" ]; then
30 LD_LIBRARY_PATH="$library_dir:$LD_LIBRARY_PATH"
31else
32 LD_LIBRARY_PATH="$library_dir"
33fi
34export LD_LIBRARY_PATH
35
36# OSX/macOS
37if [ -n "${DYLD_LIBRARY_PATH-}" ]; then
38 DYLD_LIBRARY_PATH="$library_dir:$DYLD_LIBRARY_PATH"
39else
40 DYLD_LIBRARY_PATH="$library_dir"
41fi
42export DYLD_LIBRARY_PATH
43
Gilles Peskinec25ae6f2023-07-25 19:53:04 +020044msg "Running dynamic loading test program: $program"
45msg "Loading libraries from: $library_dir"
Gilles Peskineca144592021-11-04 12:52:14 +010046"$program"