Network streaming support
[lttng-tools.git] / tests / utils.sh
index 2d8b46a834b72f6e393cdb89406602f098ff5ad2..9f2f629b49d6ec92a7b244e8e3a2c348e64ad8a2 100644 (file)
@@ -101,6 +101,11 @@ function stop_sessiond ()
                echo -e "\e[1;31mFAILED\e[0m"
                return 1
        else
+               out=1
+               while [ -n "$out" ]; do
+                       out=$(pidof lt-$SESSIOND_BIN)
+                       sleep 0.5
+               done
                echo -e "\e[1;32mOK\e[0m"
        fi
 }
@@ -110,7 +115,7 @@ function create_lttng_session ()
        sess_name=$1
        trace_path=$2
 
-       echo -n "Creating lttng session $sess_name in $trace_path"
+       echo -n "Creating lttng session $sess_name in $trace_path "
        $TESTDIR/../src/bin/lttng/$LTTNG_BIN create $sess_name -o $trace_path >/dev/null 2>&1
        if [ $? -eq 1 ]; then
                echo -e "\e[1;31mFAILED\e[0m"
This page took 0.022737 seconds and 4 git commands to generate.