Tests: Convert the tools filtering tests output to TAP
[lttng-tools.git] / tests / regression / tools / health / test_thread_stall
CommitLineData
5862a19a
CB
1#!/bin/bash
2#
3# Copyright (C) - 2012 Christian Babeux <christian.babeux@efficios.com>
4#
5# This program is free software; you can redistribute it and/or modify it
6# under the terms of the GNU General Public License, version 2 only, as
7# published by the Free Software Foundation.
8#
9# This program is distributed in the hope that it will be useful, but WITHOUT
10# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12# more details.
13#
14# You should have received a copy of the GNU General Public License along with
15# this program; if not, write to the Free Software Foundation, Inc., 51
16# Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17
18TEST_DESC="Health check - Thread stall"
19
20CURDIR=$(dirname $0)/
9ac429ef 21TESTDIR=$CURDIR/../../..
5862a19a
CB
22LTTNG_BIN="lttng"
23SESSION_NAME="health_thread_stall"
24EVENT_NAME="bogus"
25HEALTH_CHECK_BIN="health_check"
26SESSIOND_PRELOAD=".libs/libhealthstall.so"
27
9ac429ef 28source $TESTDIR/utils/utils.sh
5862a19a
CB
29
30print_test_banner "$TEST_DESC"
31
a863986c 32if [ ! -f "$CURDIR/$SESSIOND_PRELOAD" ]; then
5862a19a
CB
33 echo -e "libhealthstall.so not available for this test. Skipping."
34 exit 0
35fi
36
37function test_thread_stall
38{
39 test_thread_stall_name="$1"
40 test_thread_exit_code="$2"
41
42 echo ""
43 echo -e "=== Testing health failure with ${test_thread_stall_name}"
44
45 # Activate testpoints
46 export LTTNG_TESTPOINT_ENABLE=1
47
48 # Activate specific thread exit
49 export ${test_thread_stall_name}_STALL=1
50
51 # Spawn sessiond with preload healthexit lib
52 export LD_PRELOAD="$CURDIR/$SESSIOND_PRELOAD"
53 start_lttng_sessiond
54
55 # Cleanup some env. var.
56 unset LD_PRELOAD
57 unset ${test_thread_stall_name}_STALL
58
59 # Check initial health status
60 $CURDIR/$HEALTH_CHECK_BIN &> /dev/null
61
62 echo -n "Validating that ${test_thread_stall_name} is stalled... "
63
64 # Wait
65 sleep 25
66
67 # Check health status, exit code should indicate failure
68 $CURDIR/$HEALTH_CHECK_BIN &> /dev/null
69
70 health_check_exit_code=$?
71
72 if [ $health_check_exit_code -eq $test_thread_exit_code ]; then
73 print_ok
74 else
75 print_fail
76 echo -e "Health returned: $health_check_exit_code\n"
77
78 stop_lttng_sessiond
79 return 1
80 fi
81
82 echo -n "Validating that ${test_thread_stall_name} is no longer stalled... "
83
84 # Wait
85 sleep 40
86
87 # Check health status, exit code should now pass
88 $CURDIR/$HEALTH_CHECK_BIN &> /dev/null
89
90 health_check_exit_code=$?
91
92 if [ $health_check_exit_code -eq 0 ]; then
93 print_ok
94 stop_lttng_sessiond
95 else
96 print_fail
97 echo -e "Health returned: $health_check_exit_code\n"
98 stop_lttng_sessiond
99 return 1
100 fi
101
102
103}
104
105THREAD=("LTTNG_THREAD_MANAGE_CLIENTS"
106 "LTTNG_THREAD_MANAGE_APPS"
107# This thread is a little bit tricky to stall,
108# need to send some commands and setup an app.
109# "LTTNG_THREAD_REG_APPS"
110 "LTTNG_THREAD_MANAGE_KERNEL")
111
112# Exit code value to indicate specific thread failure
113EXIT_CODE=(1
114 2
115# 4
116 8)
117
118THREAD_COUNT=${#THREAD[@]}
119i=0
120while [ "$i" -lt "$THREAD_COUNT" ]; do
121 test_thread_stall "${THREAD[$i]}" "${EXIT_CODE[$i]}"
122
123 if [ $? -eq 1 ]; then
124 exit 1
125 fi
126
127 let "i++"
128done
This page took 0.030072 seconds and 5 git commands to generate.