X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;ds=sidebyside;f=tests%2Ftools%2Fstreaming%2Frun-kernel;h=b64f233b8fa612f27ff307b56e8409c36e5cac74;hb=fb3268e3029673dbb7c6d43b2dcde5e5f9eec07a;hp=8674edfac29215d853d1bb833153ed47498142b9;hpb=f4e40ab68a515750cdde6877b53fafb5210ceac6;p=lttng-tools.git diff --git a/tests/tools/streaming/run-kernel b/tests/tools/streaming/run-kernel index 8674edfac..b64f233b8 100755 --- a/tests/tools/streaming/run-kernel +++ b/tests/tools/streaming/run-kernel @@ -14,6 +14,7 @@ # You should have received a copy of the GNU Lesser General Public License # along with this library; if not, write to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA +TEST_DESC="Streaming - Kernel tracing" CURDIR=$(dirname $0)/ TESTDIR=$CURDIR/../.. @@ -21,11 +22,11 @@ EVENT_NAME="sched_switch" PID_RELAYD=0 SESSION_NAME="" +TRACE_PATH=$(mktemp -d) + source $TESTDIR/utils.sh -echo -e "\n---------------------------" -echo -e " Streaming - Kernel tracing " -echo -e "----------------------------" +print_test_banner "$TEST_DESC" if [ "$(id -u)" != "0" ]; then echo "This test must be running as root. Aborting" @@ -48,10 +49,10 @@ function lttng_create_session # Create session with default path $TESTDIR/../src/bin/lttng/$LTTNG_BIN create $SESSION_NAME >/dev/null 2>&1 if [ $? -eq 1 ]; then - echo -e '\e[1;31mFAILED\e[0m' + print_fail return 1 else - echo -e "\e[1;32mOK\e[0m" + print_ok fi } @@ -61,10 +62,10 @@ function lttng_enable_consumer_localhost # Create session with default path $TESTDIR/../src/bin/lttng/$LTTNG_BIN enable-consumer -k net://localhost >/dev/null 2>&1 if [ $? -eq 1 ]; then - echo -e '\e[1;31mFAILED\e[0m' + print_fail return 1 else - echo -e "\e[1;32mOK\e[0m" + print_ok fi } @@ -74,30 +75,32 @@ function test_kernel_before_start () lttng_create_session lttng_enable_consumer_localhost lttng_enable_kernel_event $SESSION_NAME $EVENT_NAME - start_tracing $SESSION_NAME + start_lttng_tracing $SESSION_NAME # Give a second sleep 1 - stop_tracing $SESSION_NAME + stop_lttng_tracing $SESSION_NAME destroy_lttng_session $SESSION_NAME } +# Deactivated since this feature is not yet available where we can enable +# an event AFTERE tracing has started. function test_kernel_after_start () { echo -e "\n=== Testing kernel streaming with event enable AFTER start\n" lttng_create_session lttng_enable_consumer_localhost - start_tracing $SESSION_NAME + start_lttng_tracing $SESSION_NAME lttng_enable_kernel_event $SESSION_NAME $EVENT_NAME # Give a second sleep 1 - stop_tracing $SESSION_NAME + stop_lttng_tracing $SESSION_NAME destroy_lttng_session $SESSION_NAME } -start_sessiond -lttng_start_relayd +start_lttng_sessiond +start_lttng_relayd "-o $TRACE_PATH" -tests=( test_kernel_before_start test_kernel_after_start ) +tests=( test_kernel_before_start ) for fct_test in ${tests[@]}; do @@ -105,19 +108,18 @@ do ${fct_test} # Validate test - validate_trace $EVENT_NAME ~/lttng-traces/$HOSTNAME/$SESSION_NAME* + validate_trace $EVENT_NAME $TRACE_PATH/$HOSTNAME/$SESSION_NAME* if [ $? -eq 0 ]; then # Only delete if successful - rm -rf ~/lttng-traces/$HOSTNAME/$SESSION_NAME* - rm -rf ~/lttng-traces/$SESSION_NAME* + rm -rf $TRACE_PATH else break fi done echo "" -stop_sessiond -lttng_stop_relayd +stop_lttng_sessiond +stop_lttng_relayd exit $out