tests: Move to kernel style SPDX license identifiers
[lttng-tools.git] / tests / regression / ust / high-throughput / test_high_throughput
CommitLineData
e72d66a6
DG
1#!/bin/bash
2#
9d16b343 3# Copyright (C) 2012 David Goulet <dgoulet@efficios.com>
e72d66a6 4#
9d16b343
MJ
5# SPDX-License-Identifier: LGPL-2.1-only
6
c38b5107 7TEST_DESC="UST tracer - Testing high events throughput"
e72d66a6
DG
8
9CURDIR=$(dirname $0)/
9ac429ef 10TESTDIR=$CURDIR/../../..
6950d621 11NR_APP=20
e72d66a6
DG
12BIN_NAME="gen-events"
13SESSION_NAME="high-throughput"
14EVENT_NAME="tp:tptest"
6950d621 15NUM_TESTS=9
e72d66a6 16
9ac429ef 17source $TESTDIR/utils/utils.sh
e72d66a6 18
8acbe07d 19if [ ! -x "$CURDIR/$BIN_NAME" ]; then
6950d621 20 BAIL_OUT "No UST nevents binary detected."
e72d66a6
DG
21fi
22
23TRACE_PATH=$(mktemp -d)
24
25# MUST set TESTDIR before calling those functions
26
6950d621
CB
27plan_tests $NUM_TESTS
28
e3bef725
CB
29print_test_banner "$TEST_DESC"
30
fb3268e3 31start_lttng_sessiond
e72d66a6 32
bf6ae429 33create_lttng_session_ok $SESSION_NAME $TRACE_PATH
e72d66a6 34
c4926bb5 35enable_ust_lttng_event_ok $SESSION_NAME $EVENT_NAME
e563bbdb 36start_lttng_tracing_ok $SESSION_NAME
e72d66a6 37
6950d621 38for i in `seq 1 $NR_APP`; do
c7613334 39 ./$CURDIR/$BIN_NAME >/dev/null 2>&1 &
e72d66a6
DG
40done
41
5dca3876
MD
42diag "Waiting for applications to end"
43wait
44pass "Wait for applications to end"
e72d66a6 45
96340a01 46stop_lttng_tracing_ok $SESSION_NAME
67b4c664 47destroy_lttng_session_ok $SESSION_NAME
e72d66a6 48
fb3268e3 49stop_lttng_sessiond
e72d66a6
DG
50
51# Validate test
52
53TEMP_FILE=$(mktemp)
54TEMP_FILE_2=$(mktemp)
55
56traced=$(babeltrace $TRACE_PATH 2>/dev/null | wc -l)
57babeltrace $TRACE_PATH >/dev/null 2>$TEMP_FILE_2
58
59cat $TEMP_FILE_2 | cut -f4 -d " " >$TEMP_FILE
60
61dropped=0
62while read line;
63do
64 let dropped=$dropped+$line
65done < $TEMP_FILE
66
67let total=$dropped+$traced
6950d621 68let wanted=$NR_APP*1000000
e72d66a6
DG
69
70if [ $wanted -ne $total ]; then
6950d621
CB
71 fail "Trace validation"
72 diag "Expected $wanted. Dropped $dropped. Recorded $traced. Total $total"
e72d66a6 73else
6950d621
CB
74 pass "Trace validation"
75 diag "Expected $wanted. Dropped $dropped. Recorded $traced. Total $total"
e72d66a6
DG
76fi
77
78rm -rf $TRACE_PATH
79rm $TEMP_FILE $TEMP_FILE_2
This page took 0.043056 seconds and 4 git commands to generate.