From 7c8e13357497e833d55be42eeea740a2d7a426ba Mon Sep 17 00:00:00 2001
From: earplov <arpad.lovassy@ericsson.com>
Date: Mon, 3 Apr 2017 10:37:44 +0200
Subject: [PATCH] fix executor API test script to build demo, because make
 install cleans it

Signed-off-by: earplov <arpad.lovassy@ericsson.com>
---
 .../TITAN_Executor_API_test/build_and_run_test.sh           | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/titan_executor_api/TITAN_Executor_API_test/build_and_run_test.sh b/titan_executor_api/TITAN_Executor_API_test/build_and_run_test.sh
index 15a0a2130..692b61f61 100755
--- a/titan_executor_api/TITAN_Executor_API_test/build_and_run_test.sh
+++ b/titan_executor_api/TITAN_Executor_API_test/build_and_run_test.sh
@@ -64,7 +64,13 @@ dir_exist ${TTCN3_DIR}
 file_exist ${TTCN3_DIR}/lib/libmctrjninative.so
 [[ "${LD_LIBRARY_PATH}" == *"${TTCN3_DIR}/lib"* ]] && echo "\$TTCN3_DIR/lib is added to \$LD_LIBRARY_PATH=${LD_LIBRARY_PATH}, OK" \
 || { echo "\$TTCN3_DIR is NOT added to \$LD_LIBRARY_PATH=${LD_LIBRARY_PATH}, NOT OK, exiting"; exit 1; }
+
+# make sure, that the demo is compiled, which is cleaned in make install
+pushd ${TTCN3_DIR}/demo
+make
+popd
 file_exist ${TTCN3_DIR}/demo/MyExample
+
 # Check if HelloWorld demo binary is compiled in parallel mode: output of MyExample -v contains "(parallel mode)"
 [ `${TTCN3_DIR}/demo/MyExample -v 2>&1 | grep "(parallel mode)" | wc -l` != 0 ] && echo "${TTCN3_DIR}/demo/MyExample is compiled in parallel mode, OK" \
 || { echo "${TTCN3_DIR}/demo/MyExample is compiled in single mode, NOT in parallel mode, NOT OK, exiting"; exit 1; }
-- 
GitLab