From d07f135e8b23c9b12226b15c0c104cc7a961827e Mon Sep 17 00:00:00 2001 From: =?utf8?q?=EB=82=A8=EA=B6=81=EC=84=9D/=EB=8F=99=EC=9E=91=EC=A0=9C?= =?utf8?q?=EC=96=B4Lab=28SR=29/Engineer/=EC=82=BC=EC=84=B1=EC=A0=84?= =?utf8?q?=EC=9E=90?= Date: Wed, 4 Jul 2018 10:36:52 +0900 Subject: [PATCH] Recover the sequence of LD_LIBRARY_PATH (#1838) The sequence of LD_LIBRARY_PATH should be remained as it was. Recover the sequence of LD_LIBRARY_PATH Signed-off-by: seok --- tests/framework/run_test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/framework/run_test.sh b/tests/framework/run_test.sh index 9eaea02..1be39b7 100755 --- a/tests/framework/run_test.sh +++ b/tests/framework/run_test.sh @@ -159,7 +159,7 @@ run_tests() echo "======================" # Run driver to test framework - LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${NNFW_LD_LIBRARY_PATH}" $DRIVER_BIN $MODELFILE + LD_LIBRARY_PATH="${NNFW_LD_LIBRARY_PATH}:${LD_LIBRARY_PATH}" $DRIVER_BIN $MODELFILE #$DRIVER_BIN $MODELFILE if [[ $? -eq 0 ]]; then -- 2.7.4