#!/bin/bash # # Copyright (C) - 2012 David Goulet # # This library is free software; you can redistribute it and/or modify it under # the terms of the GNU Lesser General Public License as published by the Free # Software Foundation; version 2.1 of the License. # # This library is distributed in the hope that it will be useful, but WITHOUT # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS # FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more # details. # # 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="UST tracer - Start tracing before and after execution" CURDIR=$(dirname $0)/ TESTDIR=$CURDIR/../../.. NR_ITER=100 SESSION_NAME="per-session" EVENT_NAME="ust_gen_nevents:tptest" NUM_TESTS=16 source $TESTDIR/utils/utils.sh print_test_banner "$TEST_DESC" if [ ! -x "$CURDIR/gen-nevents" ]; then BAIL_OUT "No UST nevents binary detected." fi # MUST set TESTDIR before calling those functions test_before_apps() { local out # BEFORE application is spawned create_lttng_session $SESSION_NAME $TRACE_PATH enable_ust_lttng_event $SESSION_NAME $EVENT_NAME start_lttng_tracing $SESSION_NAME ./$CURDIR/gen-nevents $NR_ITER ok $? "Start application to trace" stop_lttng_tracing $SESSION_NAME destroy_lttng_session $SESSION_NAME trace_matches $EVENT_NAME $NR_ITER $TRACE_PATH return $? } test_after_apps() { local out ./$CURDIR/gen-nevents 100 & ok $? "Start application to trace" # BEFORE application is spawned create_lttng_session $SESSION_NAME $TRACE_PATH enable_ust_lttng_event $SESSION_NAME $EVENT_NAME start_lttng_tracing $SESSION_NAME # At least hit one event sleep 2 stop_lttng_tracing $SESSION_NAME destroy_lttng_session $SESSION_NAME out=$(babeltrace $TRACE_PATH | grep $EVENT_NAME | wc -l) if [ $out -eq 0 ]; then fail "Trace validation" diag "No event(s) found. We are supposed to have at least one." out=1 else pass "Trace validation" diag "Found $out event(s). Coherent." out=0 fi return $out } # MUST set TESTDIR before calling those functions plan_tests $NUM_TESTS start_lttng_sessiond diag "Start application BEFORE tracing was started" TRACE_PATH=$(mktemp -d) test_before_apps out=$? if [ $out -ne 0 ]; then stop_lttng_sessiond exit $out fi rm -rf $TRACE_PATH diag "Start application AFTER tracing was started" TRACE_PATH=$(mktemp -d) test_after_apps out=$? if [ $out -ne 0 ]; then stop_lttng_sessiond exit $out fi stop_lttng_sessiond rm -rf $TRACE_PATH