3 # Copyright (C) 2017 - Philippe Proulx <pproulx@efficios.com>
4 # Copyright (C) 2019 - Simon Marchi <simon.marchi@efficios.com>
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
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.
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.
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:
25 # $ ./test_python_bt2_env python3 -m unittest test_values.MapValueTestCase.test_deepcopy
28 .
"@abs_top_builddir@/tests/utils/common.sh"
30 export BABELTRACE_PYTHON_BT2_NO_TRACEBACK
=1
31 export TEST_PLUGIN_PLUGINS_PATH
="${BT_BUILD_PATH}/src/plugins"
32 export BABELTRACE_PLUGIN_PATH
="${BT_BUILD_PATH}/src/plugins/ctf:${BT_BUILD_PATH}/src/plugins/utils:${BT_BUILD_PATH}/src/plugins/text"
33 export TEST_CTF_TRACES_PATH
="${BT_SRC_PATH}/tests/ctf-traces"
34 PYTHON_BUILD_DIR
="${BT_BUILD_PATH}/src/bindings/python/bt2/build/build_lib"
35 TESTS_UTILS_PYTHON_DIR
="${BT_SRC_PATH}/tests/utils/python"
36 export PYTHONPATH
="${PYTHON_BUILD_DIR}:${TESTS_UTILS_PYTHON_DIR}"
38 if [ "x${MSYSTEM}" != "x" ]; then
39 export PATH
="${BT_BUILD_PATH}/src/lib/.libs:${PATH}"
41 export LD_LIBRARY_PATH
="${BT_BUILD_PATH}/src/lib/.libs:${LD_LIBRARY_PATH}"