Fix: incorrect variable being checked in libc-wrapper test
[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
45malloc_process = subprocess.Popen(test_path + "prog", stdout=subprocess.PIPE, stderr=subprocess.PIPE)
46if sys.version_info >= (3, 3):
47 try:
48 malloc_process.wait(5)
49 except TimeoutExpired:
50 malloc_process.kill()
51 bail("Failed to run libustinstr-malloc test application.", session_info)
52else:
53 malloc_process.wait()
54
55print_test_result(malloc_process.returncode == 0, current_test, "Test application exited normally")
56current_test += 1
57
58stop_session(session_info)
59
60# Check for malloc events in the resulting trace
61try:
62 babeltrace_process = subprocess.Popen(["babeltrace", session_info.trace_path], stdout=subprocess.PIPE, stderr=subprocess.PIPE)
63except FileNotFoundError:
64 bail("Could not open babeltrace. Please make sure it is installed.", session_info)
65
66malloc_event_found = False
67free_event_found = False
68
69for event_line in babeltrace_process.stdout:
70 # Let babeltrace finish to get the return code
71 if malloc_event_found and free_event_found:
72 continue
73
74 event_line = event_line.decode('utf-8').replace("\n", "")
50a74617 75 if re.search(r".*lttng_ust_libc:malloc.*", event_line) is not None:
5836cdc2
JG
76 malloc_event_found = True
77
50a74617 78 if re.search(r".*lttng_ust_libc:free.*", event_line) is not None:
5836cdc2
JG
79 free_event_found = True
80
81babeltrace_process.wait()
82
83print_test_result(babeltrace_process.returncode == 0, current_test, "Resulting trace is readable")
84current_test += 1
85
72615c1f 86print_test_result(malloc_event_found, current_test, "lttng_ust_libc:malloc event found in resulting trace")
5836cdc2
JG
87current_test += 1
88
50a74617 89print_test_result(free_event_found, current_test, "lttng_ust_libc:free event found in resulting trace")
5836cdc2
JG
90current_test += 1
91
92shutil.rmtree(session_info.tmp_directory)
This page took 0.031397 seconds and 4 git commands to generate.