Fix: include stdlib.h in compat/string.h
[lttng-tools.git] / tests / regression / ust / libc-wrapper / test_libc-wrapper.py
CommitLineData
5836cdc2
JG
1#!/usr/bin/env python3
2#
3# Copyright (C) - 2013 Jérémie Galarneau <jeremie.galarneau@efficios.com>
4#
5# This program is free software; you can redistribute it and/or modify it
6# under the terms of the GNU General Public License, version 2 only, as
7# published by the Free Software Foundation.
8#
9# This program is distributed in the hope that it will be useful, but WITHOUT
10# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12# more details.
13#
14# You should have received a copy of the GNU General Public License along with
15# this program; if not, write to the Free Software Foundation, Inc., 51
16# Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17
18import os
19import subprocess
20import re
21import shutil
22import sys
23
24test_path = os.path.dirname(os.path.abspath(__file__)) + "/"
25test_utils_path = test_path
26for i in range(4):
27 test_utils_path = os.path.dirname(test_utils_path)
28test_utils_path = test_utils_path + "/utils"
29sys.path.append(test_utils_path)
30from test_utils import *
31
32
33NR_TESTS = 4
34current_test = 1
35print("1..{0}".format(NR_TESTS))
36
37# Check if a sessiond is running... bail out if none found.
38if session_daemon_alive() == 0:
39 bail("No sessiond running. Please make sure you are running this test with the \"run\" shell script and verify that the lttng tools are properly installed.")
40
41session_info = create_session()
50a74617 42enable_ust_tracepoint_event(session_info, "lttng_ust_libc*")
5836cdc2
JG
43start_session(session_info)
44
5e7baece 45malloc_process = subprocess.Popen(test_path + "prog", stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL)
b6e2447a 46malloc_process.wait()
5836cdc2
JG
47
48print_test_result(malloc_process.returncode == 0, current_test, "Test application exited normally")
49current_test += 1
50
51stop_session(session_info)
52
53# Check for malloc events in the resulting trace
54try:
55 babeltrace_process = subprocess.Popen(["babeltrace", session_info.trace_path], stdout=subprocess.PIPE, stderr=subprocess.PIPE)
56except FileNotFoundError:
57 bail("Could not open babeltrace. Please make sure it is installed.", session_info)
58
59malloc_event_found = False
60free_event_found = False
61
62for event_line in babeltrace_process.stdout:
63 # Let babeltrace finish to get the return code
64 if malloc_event_found and free_event_found:
65 continue
66
67 event_line = event_line.decode('utf-8').replace("\n", "")
50a74617 68 if re.search(r".*lttng_ust_libc:malloc.*", event_line) is not None:
5836cdc2
JG
69 malloc_event_found = True
70
50a74617 71 if re.search(r".*lttng_ust_libc:free.*", event_line) is not None:
5836cdc2
JG
72 free_event_found = True
73
74babeltrace_process.wait()
75
76print_test_result(babeltrace_process.returncode == 0, current_test, "Resulting trace is readable")
77current_test += 1
78
72615c1f 79print_test_result(malloc_event_found, current_test, "lttng_ust_libc:malloc event found in resulting trace")
5836cdc2
JG
80current_test += 1
81
50a74617 82print_test_result(free_event_found, current_test, "lttng_ust_libc:free event found in resulting trace")
5836cdc2
JG
83current_test += 1
84
85shutil.rmtree(session_info.tmp_directory)
This page took 0.038857 seconds and 4 git commands to generate.