Changes testcases in runtests to use TAP
[ust.git] / tests / manual_mode_tracing.sh
CommitLineData
dd7a064c
NC
1#!/bin/bash
2#
3# Copyright 2010 Ericsson AB
4#
5# This file is part of LTTng-UST.
6#
7# LTTng-UST is free software: you can redistribute it and/or modify
8# it under the terms of the GNU General Public License as published by
9# the Free Software Foundation, either version 3 of the License, or
10# (at your option) any later version.
11#
12# LTTng-UST is distributed in the hope that it will be useful,
13# but WITHOUT ANY WARRANTY; without even the implied warranty of
14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15# GNU General Public License for more details.
16#
17# You should have received a copy of the GNU General Public License
18# along with LTTng-UST. If not, see <http://www.gnu.org/licenses/>.
19
20TESTDIR=$(dirname $0)
21
22source $TESTDIR/test_functions.sh
23source $TESTDIR/tap.sh
24
25starttest "Manual mode tracing"
26
27plan_tests 9
28
29TRACE_DIR="/tmp/ust-testsuite-manual-trace"
30rm -rf "$TRACE_DIR"
31mkdir "$TRACE_DIR"
32
33pidfilepath="/tmp/ust-testsuite-$USER-$(date +%Y%m%d%H%M%S%N)-ustd-pid"
34mkfifo -m 0600 "$pidfilepath"
35
36ustd --pidfile "$pidfilepath" -o "$TRACE_DIR" >/dev/null 2>&1 &
37USTD_PID="$(<$pidfilepath)"
38
39LD_PRELOAD=/usr/local/lib/libust.so.0.0.0:/usr/local/lib/libustinstr-malloc.so find -L / >/dev/null 2>&1 &
40PID=$!
41sleep 0.1
42okx ustctl --list-markers "$PID"
43okx ustctl --enable-marker ust/malloc $PID
44okx ustctl --enable-marker ust/free $PID
45okx ustctl --create-trace $PID
46okx ustctl --alloc-trace $PID
47okx ustctl --start-trace $PID
48sleep 0.5
49
50okx ustctl --stop-trace $PID
51okx ustctl --destroy-trace $PID
52kill $PID
53kill -SIGTERM $USTD_PID
54wait $USTD_PID
55
56trace_matches -N "ust.malloc" "^ust.malloc:" "$TRACE_DIR"
This page took 0.025576 seconds and 4 git commands to generate.