X-Git-Url: http://git.liburcu.org/?a=blobdiff_plain;f=tests%2Fregression%2Ftools%2Fsnapshots%2Fust_test;h=9dd95bf2bb257569e95da06d084bbeabc736ac56;hb=d4607bc6a5dcc2dff11756ff25c9e67eacd104bc;hp=128849ef8ce7c87618aea7d361803c79ab38307a;hpb=46dac85435aab176bd14f167ca964b4ca2fee127;p=lttng-tools.git diff --git a/tests/regression/tools/snapshots/ust_test b/tests/regression/tools/snapshots/ust_test index 128849ef8..9dd95bf2b 100755 --- a/tests/regression/tools/snapshots/ust_test +++ b/tests/regression/tools/snapshots/ust_test @@ -27,6 +27,7 @@ TESTAPP_NAME="gen-ust-events" TESTAPP_BIN="$TESTAPP_PATH/$TESTAPP_NAME/$TESTAPP_NAME" NR_ITER=2000000 NR_USEC_WAIT=100 +APPS_PID= NUM_TESTS=76 @@ -52,7 +53,9 @@ function start_test_app() # Start application with a temporary file. $TESTAPP_BIN $NR_ITER $NR_USEC_WAIT $tmp_file & - ok $? "Start application to trace" + ret=$? + APPS_PID="${APPS_PID} ${!}" + ok $ret "Start application to trace" # Wait for the application file to appear indicating that at least one # tracepoint has been fired. @@ -63,11 +66,13 @@ function start_test_app() rm -f $tmp_file } -function kill_test_app() +function stop_test_apps() { - diag "Killing $TESTAPP_NAME" - PID_APP=`pidof $TESTAPP_NAME` - kill $PID_APP >/dev/null 2>&1 + diag "Stopping $TESTAPP_NAME" + for p in ${APPS_PID}; do + kill ${p} + wait ${p} 2>&1 + done } function snapshot_add_output () @@ -170,7 +175,7 @@ function test_ust_local_snapshot () rm -rf $TRACE_PATH fi - kill_test_app + stop_test_apps } function test_ust_local_snapshot_max_size () @@ -218,7 +223,7 @@ function test_ust_local_snapshot_max_size () rm -rf $TRACE_PATH fi - kill_test_app + stop_test_apps } function test_ust_local_snapshot_large_metadata () @@ -280,7 +285,7 @@ function test_ust_per_uid_local_snapshot () rm -rf $TRACE_PATH fi - kill_test_app + stop_test_apps } function test_ust_per_uid_local_snapshot_post_mortem () @@ -294,7 +299,7 @@ function test_ust_per_uid_local_snapshot_post_mortem () # Returns once the application has at least fired ONE tracepoint. start_test_app - kill_test_app + stop_test_apps lttng_snapshot_record $SESSION_NAME stop_lttng_tracing $SESSION_NAME @@ -334,7 +339,7 @@ function test_ust_local_snapshots () stop_lttng_tracing $SESSION_NAME destroy_lttng_session $SESSION_NAME - kill_test_app + stop_test_apps } plan_tests $NUM_TESTS