cpp-common/bt2c/fmt.hpp: use `wise_enum::string_type` in `EnableIfIsWiseEnum` definition
[babeltrace.git] / tests / utils / run-in-py-env.sh
1 #!/bin/bash
2 #
3 # SPDX-License-Identifier: GPL-2.0-only
4 #
5 # Copyright (C) 2017-2023 Philippe Proulx <pproulx@efficios.com>
6 # Copyright (C) 2019 Simon Marchi <simon.marchi@efficios.com>
7
8 if [[ -n ${BT_TESTS_SRCDIR:-} ]]; then
9 utils_sh=$BT_TESTS_SRCDIR/utils/utils.sh
10 else
11 utils_sh=$(dirname "$0")/../utils/utils.sh
12 fi
13
14 # shellcheck source=../utils/utils.sh
15 source "$utils_sh"
16
17 usage() {
18 echo "Usage: run-in-py-utils-bt2-env.sh COMMAND [ARGS]..."
19 echo ""
20 echo "Runs the command \`COMMAND\` with the arguments \`ARGS\` within an environment"
21 echo "which can import the testing Python modules (in \`tests/utils/python\`) and the"
22 echo "built \`bt2\` Python package."
23 echo ""
24 echo "NOTE: If you build out of tree, export and set the \`BT_TESTS_BUILDDIR\`"
25 echo "environment variable to the built \`tests\` directory."
26 }
27
28 if (($# == 0)); then
29 usage
30 exit 1
31 fi
32
33 # Make sure the value of `BT_TESTS_BUILDDIR` makes sense
34 if [[ ! -f $BT_TESTS_BUILDDIR/Makefile ]]; then
35 {
36 echo "ERROR: Invalid \`BT_TESTS_BUILDDIR\` variable (\`\$BT_TESTS_BUILDDIR/Makefile\`"
37 echo "doesn't exist)."
38 echo ""
39 echo "If you build out of tree, export and set the \`BT_TESTS_BUILDDIR\` environment"
40 echo "variable to the built \`tests\` directory."
41 } >&2
42
43 exit 1
44 fi
45
46 bt_run_in_py_env "$@"
This page took 0.033271 seconds and 4 git commands to generate.