tests: gen-ust-events: use options instead of arguments
[lttng-tools.git] / tests / regression / ust / namespaces / test_ns_contexts
CommitLineData
bbf15743
MJ
1#!/bin/bash
2#
3# Copyright (C) 2019 Michael Jeanson <mjeanson@efficios.com>
4#
5# This library is free software; you can redistribute it and/or modify it under
6# the terms of the GNU Lesser General Public License as published by the Free
7# Software Foundation; version 2.1 of the License.
8#
9# This library is distributed in the hope that it will be useful, but WITHOUT
10# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
12# details.
13#
14# You should have received a copy of the GNU Lesser General Public License
15# along with this library; if not, write to the Free Software Foundation, Inc.,
16# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17
18TEST_DESC="UST - Namespace contexts"
19
20CURDIR=$(dirname "$0")/
21TESTDIR=$CURDIR/../../..
22
23TESTAPP_PATH="$TESTDIR/utils/testapp"
24TESTAPP_NAME="gen-ust-events"
25TESTAPP_BIN="$TESTAPP_PATH/$TESTAPP_NAME/$TESTAPP_NAME"
26NUM_EVENT=10000
27EVENT_NAME="tp:tptest"
28
29TESTS_PER_NS=13
30
31NUM_TESTS=$((TESTS_PER_NS * 7))
32
33source "$TESTDIR/utils/utils.sh"
34
35# MUST set TESTDIR before calling those functions
36function run_app()
37{
6c4a91d6 38 $TESTAPP_BIN -i $NUM_EVENT
bbf15743
MJ
39 ok $? "Application done"
40}
41
42function test_ns()
43{
44 local ns=$1
45
46 local session_name="${ns}_ns"
47 local chan_name="${ns}_ns"
48 local context_name="${ns}_ns"
49
50 local trace_path
51 local ns_inode
52
53 # Check if the kernel has support for this ns type
54 if [ ! -f "/proc/$$/ns/$ns" ]; then
55 skip 0 "System has no $ns namespace support" $TESTS_PER_NS
56 return
57 fi
58
59 # Get the current ns inode number
60 ns_inode=$(stat -c '%i' -L "/proc/$$/ns/$ns")
61 ok $? "Get current $ns namespace inode: $ns_inode"
62
63 trace_path=$(mktemp -d)
64
65 start_lttng_sessiond
66
67 create_lttng_session_ok "$session_name" "$trace_path"
68 enable_ust_lttng_channel_ok "$session_name" "$chan_name"
69 add_context_ust_ok "$session_name" "$chan_name" "$context_name"
70 enable_ust_lttng_event_ok "$session_name" "$EVENT_NAME" "$chan_name"
71 start_lttng_tracing_ok "$session_name"
72
73 run_app
74
75 # stop and destroy
76 stop_lttng_tracing_ok "$session_name"
77 destroy_lttng_session_ok "$session_name"
78 stop_lttng_sessiond
79
80 # Check that the events contain the right namespace inode number
81 validate_trace_count "${ns}_ns = $ns_inode" "$trace_path" $NUM_EVENT
82
83 rm -rf "$trace_path"
84}
85
86
87plan_tests $NUM_TESTS
88
89print_test_banner "$TEST_DESC"
90
91system_has_ns=0
92if [ -d "/proc/$$/ns" ]; then
93 system_has_ns=1
94fi
95
96skip $system_has_ns "System does not support namespaces" $NUM_TESTS && exit 0
97
98test_ns cgroup
99test_ns ipc
100test_ns mnt
101test_ns net
102test_ns pid
103test_ns user
104test_ns uts
This page took 0.026702 seconds and 4 git commands to generate.