Add env wrapper to facilitate importing the in-tree python bindings
[babeltrace.git] / tests / utils / test_python_bt2_env.in
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
27 NO_SH_TAP=1
28 . "@abs_top_builddir@/tests/utils/common.sh"
29
30 export BABELTRACE_PYTHON_BT2_NO_TRACEBACK=1
31 export TEST_PLUGIN_PLUGINS_PATH="${BT_BUILD_PATH}/plugins"
32 export BABELTRACE_PLUGIN_PATH="${BT_BUILD_PATH}/plugins/ctf:${BT_BUILD_PATH}/plugins/utils:${BT_BUILD_PATH}/plugins/text"
33 export TEST_CTF_TRACES_PATH="${BT_SRC_PATH}/tests/ctf-traces"
34 PYTHON_BUILD_DIR="${BT_BUILD_PATH}/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}"
37
38 if [ "x${MSYSTEM}" != "x" ]; then
39 export PATH="${BT_BUILD_PATH}/lib/.libs:${PATH}"
40 else
41 export LD_LIBRARY_PATH="${BT_BUILD_PATH}/lib/.libs:${LD_LIBRARY_PATH}"
42 fi
43
44 exec "$@"
This page took 0.031577 seconds and 4 git commands to generate.