From cc7372eefd2cc1ec0737f765a2600396f13e13ab Mon Sep 17 00:00:00 2001 From: vrvarma Date: Fri, 18 Sep 2020 12:40:08 -0400 Subject: Fix osdf csit failure by fixing logging log.yml file needs to be updated for the osdf simulators after the python upgrade simulator dockerfile and scripts updated Change-Id: Ie6f59a602dc39db684e88357dc36ee81a2015da0 Signed-off-by: vrvarma Issue-ID: OPTFRA-842 --- test/functest/simulators/build_sim_image.sh | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'test/functest/simulators/build_sim_image.sh') diff --git a/test/functest/simulators/build_sim_image.sh b/test/functest/simulators/build_sim_image.sh index c6bde2a..5d46ecb 100755 --- a/test/functest/simulators/build_sim_image.sh +++ b/test/functest/simulators/build_sim_image.sh @@ -18,7 +18,13 @@ # ------------------------------------------------------------------------- # -SCRIPTDIR=$(dirname $(readlink -f $0)) +if [[ `uname` == "Darwin" ]] +then + SCRIPTDIR=$(dirname $(greadlink -f $0)) +else + SCRIPTDIR=$(dirname $(readlink -f $0)) +fi + FUNC_TEST_DIR=$(dirname $SCRIPTDIR) TEST_DIR=$(dirname $FUNC_TEST_DIR) SIMULATORS_DIR=$FUNC_TEST_DIR/simulators -- cgit 1.2.3-korg