X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=tests%2Ftools%2Fstreaming%2Furi_switch;h=4eb4359835017e1a3506ffbc0ea7a6fe1404bfc0;hb=fb3268e3029673dbb7c6d43b2dcde5e5f9eec07a;hp=a6b158230f4cb4cedd5793a413101508e8948812;hpb=d007b9c39bcdd189bf27d24658d97df64b4b20c5;p=lttng-tools.git diff --git a/tests/tools/streaming/uri_switch b/tests/tools/streaming/uri_switch index a6b158230..4eb435983 100755 --- a/tests/tools/streaming/uri_switch +++ b/tests/tools/streaming/uri_switch @@ -15,6 +15,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 - URI switching" CURDIR=$(dirname $0)/ TESTDIR=$CURDIR/../.. @@ -27,10 +28,7 @@ TRACE_PATH=$(mktemp -d) source $TESTDIR/utils.sh -echo -e "\n" -echo -e "---------------------------" -echo -e " Streaming - URI switching " -echo -e "---------------------------" +print_test_banner "$TEST_DESC" if [ ! -x "$CURDIR/$BIN_NAME" ]; then echo -e "No UST nevents binary detected. Skipping." @@ -96,10 +94,10 @@ function test_uri_switch_localhost_folder done enable_ust_lttng_event $SESSION_NAME $EVENT_NAME - start_tracing $SESSION_NAME + start_lttng_tracing $SESSION_NAME run_apps wait_apps - stop_tracing $SESSION_NAME + stop_lttng_tracing $SESSION_NAME destroy_lttng_session $SESSION_NAME validate_trace $EVENT_NAME $TRACE_PATH/$HOSTNAME/$RAND @@ -137,10 +135,10 @@ function test_uri_switch_file_network lttng_create_session $FILE_URI lttng_enable_consumer "$NETWORK_URI/$NET_PATH" enable_ust_lttng_event $SESSION_NAME $EVENT_NAME - start_tracing $SESSION_NAME + start_lttng_tracing $SESSION_NAME run_apps wait_apps - stop_tracing $SESSION_NAME + stop_lttng_tracing $SESSION_NAME destroy_lttng_session $SESSION_NAME validate_trace $EVENT_NAME $TRACE_PATH/$HOSTNAME/$NET_PATH @@ -181,10 +179,10 @@ IPVER=$1 lttng_create_session $NETWORK_URI lttng_enable_consumer "$FILE_URI/$FILE_PATH" enable_ust_lttng_event $SESSION_NAME $EVENT_NAME - start_tracing $SESSION_NAME + start_lttng_tracing $SESSION_NAME run_apps wait_apps - stop_tracing $SESSION_NAME + stop_lttng_tracing $SESSION_NAME destroy_lttng_session $SESSION_NAME validate_trace $EVENT_NAME $TMP_PATH/$FILE_PATH @@ -198,22 +196,22 @@ IPVER=$1 } -start_sessiond +start_lttng_sessiond echo "" echo "=== Testing with IPv4" -lttng_start_relayd "-o $TRACE_PATH" +start_lttng_relayd "-o $TRACE_PATH" test_uri_switch_localhost_folder "IPv4" test_uri_switch_file_network "IPv4" test_uri_switch_network_file "IPv4" -lttng_stop_relayd +stop_lttng_relayd echo "" echo "=== Testing with IPv6" -lttng_start_relayd "-o $TRACE_PATH -C tcp6://localhost:5342 -D tcp6://localhost:5343" +start_lttng_relayd "-o $TRACE_PATH -C tcp6://localhost:5342 -D tcp6://localhost:5343" test_uri_switch_localhost_folder "IPv6" test_uri_switch_file_network "IPv6" test_uri_switch_network_file "IPv6" -lttng_stop_relayd +stop_lttng_relayd -stop_sessiond +stop_lttng_sessiond