Re-organize sources
[babeltrace.git] / tests / utils / test_python_bt2_env.in
CommitLineData
d4b704b0
SM
1#!/bin/bash
2#
3# Copyright (C) 2017 - Philippe Proulx <pproulx@efficios.com>
4# Copyright (C) 2019 - Simon Marchi <simon.marchi@efficios.com>
5#
6# This program is free software; you can redistribute it and/or
7# modify it under the terms of the GNU General Public License
8# as published by the Free Software Foundation; only version 2
9# of the License.
10#
11# This program is distributed in the hope that it will be useful,
12# but WITHOUT ANY WARRANTY; without even the implied warranty of
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14# GNU General Public License for more details.
15#
16# You should have received a copy of the GNU General Public License
17# along with this program; if not, write to the Free Software
18# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19#
20
21# Execute a shell command in the appropriate environment to have access to the
22# bt2 Python bindings. For example, one could use it to run a specific Python
23# binding test case with:
24#
25# $ ./test_python_bt2_env python3 -m unittest test_values.MapValueTestCase.test_deepcopy
26
27NO_SH_TAP=1
28. "@abs_top_builddir@/tests/utils/common.sh"
29
30export BABELTRACE_PYTHON_BT2_NO_TRACEBACK=1
578e048b
MJ
31export TEST_PLUGIN_PLUGINS_PATH="${BT_BUILD_PATH}/src/plugins"
32export BABELTRACE_PLUGIN_PATH="${BT_BUILD_PATH}/src/plugins/ctf:${BT_BUILD_PATH}/src/plugins/utils:${BT_BUILD_PATH}/src/plugins/text"
d4b704b0 33export TEST_CTF_TRACES_PATH="${BT_SRC_PATH}/tests/ctf-traces"
578e048b 34PYTHON_BUILD_DIR="${BT_BUILD_PATH}/src/bindings/python/bt2/build/build_lib"
d4b704b0
SM
35TESTS_UTILS_PYTHON_DIR="${BT_SRC_PATH}/tests/utils/python"
36export PYTHONPATH="${PYTHON_BUILD_DIR}:${TESTS_UTILS_PYTHON_DIR}"
37
38if [ "x${MSYSTEM}" != "x" ]; then
578e048b 39 export PATH="${BT_BUILD_PATH}/src/lib/.libs:${PATH}"
d4b704b0 40else
578e048b 41 export LD_LIBRARY_PATH="${BT_BUILD_PATH}/src/lib/.libs:${LD_LIBRARY_PATH}"
d4b704b0
SM
42fi
43
44exec "$@"
This page took 0.025905 seconds and 4 git commands to generate.