Port: fix library load in python tests on Windows
[babeltrace.git] / tests / bindings / python / babeltrace / test_python_babeltrace.in
CommitLineData
d6ca48e5
JG
1#!/bin/bash
2#
3# Copyright (C) 2017 - Philippe Proulx <pproulx@efficios.com>
4# 2017 - Jérémie Galarneau <jeremie.galarneau@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
21NO_SH_TAP=1
22. "@abs_top_builddir@/tests/utils/common.sh"
23
24check_coverage() {
25 coverage run "$@"
26}
27
28export BABELTRACE_PYTHON_BT2_NO_TRACEBACK=1
29export TEST_PLUGIN_PLUGINS_PATH="${BT_BUILD_PATH}/plugins"
30export BABELTRACE_PLUGIN_PATH="${BT_BUILD_PATH}/plugins/ctf:${BT_BUILD_PATH}/plugins/utils:${BT_BUILD_PATH}/plugins/text"
f4f1e19b 31export TEST_CTF_TRACES_PATH="${BT_SRC_PATH}/tests/ctf-traces"
d6ca48e5
JG
32PYTHON_BUILD_DIR="${BT_BUILD_PATH}/bindings/python/bt2/build/build_lib:${BT_BUILD_PATH}/bindings/python/babeltrace/build/build_lib"
33TESTS_UTILS_PYTHON_DIR="${BT_SRC_PATH}/tests/utils/python"
34TESTS_CTF_TRACES="${BT_SRC_PATH}/tests/ctf-traces"
35TESTRUNNER_PY="${BT_SRC_PATH}/tests/utils/python/testrunner.py"
36THIS_DIR="${BT_SRC_PATH}/tests/bindings/python/babeltrace"
37
a41f1180
MJ
38if [ "x${MSYSTEM}" != "x" ]; then
39 export PATH="${BT_BUILD_PATH}/lib/.libs:${PATH}"
40else
41 export LD_LIBRARY_PATH="${BT_BUILD_PATH}/lib/.libs:${LD_LIBRARY_PATH}"
42fi
43
44if test "x${TESTALL_COVERAGE}" = "x1"; then
d6ca48e5
JG
45 EXEC=check_coverage
46else
47 EXEC="@PYTHON@"
48
49fi
50
a41f1180
MJ
51PYTHONPATH="${PYTHON_BUILD_DIR}:${TESTS_UTILS_PYTHON_DIR}" \
52 "${EXEC}" "${TESTRUNNER_PY}" "${THIS_DIR}"
d6ca48e5
JG
53res=$?
54
a41f1180 55if test "x${TESTALL_COVERAGE_REPORT}" = "x1"; then
d6ca48e5
JG
56 coverage report -m
57fi
58
a41f1180 59if test "x${TESTALL_COVERAGE_HTML}" = "x1"; then
d6ca48e5
JG
60 coverage html
61fi
62
63exit $res
This page took 0.026109 seconds and 4 git commands to generate.