X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=tests%2Fstress%2Ftest_multi_sessions_per_uid_10app;fp=tests%2Fstress%2Ftest_multi_sessions_per_uid_10app;h=a86b72426b8585c9117a71fe41ddf8f771449181;hp=365519dc661b2fe890ca35e63a787287c3360d3a;hb=7e635e711c37b1cf813a52babfe449e3863517f4;hpb=491c49ebe394ab5cbb19800ca92555977be6ce43 diff --git a/tests/stress/test_multi_sessions_per_uid_10app b/tests/stress/test_multi_sessions_per_uid_10app index 365519dc6..a86b72426 100755 --- a/tests/stress/test_multi_sessions_per_uid_10app +++ b/tests/stress/test_multi_sessions_per_uid_10app @@ -24,6 +24,7 @@ NR_APP=10 NR_SESSION=5 NR_LOOP=1000 COREDUMP_FILE=$(cat /proc/sys/kernel/core_pattern) +APPS_PID= TEST_DESC="Stress test - $NR_SESSION sessions per UID with $NR_APP apps" @@ -101,7 +102,11 @@ test_stress() function cleanup() { diag "Cleaning up!" - killall -9 $LAUNCH_APP + for p in ${APPS_PID}; do + kill -s SIGKILL ${p} + wait ${p} 2>/dev/null + done + APPS_PID= stop_lttng_sessiond } @@ -113,6 +118,7 @@ function sighandler() } trap sighandler SIGINT +trap sighandler SIGTERM # Make sure we collect a coredump if possible. ulimit -c unlimited @@ -128,6 +134,7 @@ diag "Starting applications" # Start NR_APP applications script that will spawn apps non stop. ./$TESTDIR/stress/$LAUNCH_APP $NR_APP & +APPS_PID="${APPS_PID} ${!}" TRACE_PATH=$(mktemp -d)