From 80676571424a1c1e16cd0b06084590440988732b Mon Sep 17 00:00:00 2001 From: Harry Ramsey Date: Tue, 18 Feb 2025 08:54:15 +0000 Subject: [PATCH] Update filepath to demo_common.sh This commit updates the filepath to demo_common.sh in dlopen_demo.sh and the comment in demo_common.sh regarding how to use demo_common.sh. Signed-off-by: Harry Ramsey --- scripts/demo_common.sh | 2 +- tests/programs/dlopen_demo.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/demo_common.sh b/scripts/demo_common.sh index d8fcda554..004e6ab20 100644 --- a/scripts/demo_common.sh +++ b/scripts/demo_common.sh @@ -4,7 +4,7 @@ ## ========================== ## ## Include this file near the top of each demo script: -## . "${0%/*}/../demo_common.sh" +## . "${0%/*}/demo_common.sh" ## ## Start with a "msg" call that explains the purpose of the script. ## Then call the "depends_on" function to ensure that all config diff --git a/tests/programs/dlopen_demo.sh b/tests/programs/dlopen_demo.sh index 7280f1d70..6e1e8f12b 100755 --- a/tests/programs/dlopen_demo.sh +++ b/tests/programs/dlopen_demo.sh @@ -6,7 +6,7 @@ # Copyright The Mbed TLS Contributors # SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later -. "${0%/*}/../demo_common.sh" +. "${0%/*}/../../scripts/demo_common.sh" msg "Test the dynamic loading of libmbed*"