Change required clang-format version to 14
[babeltrace.git] / tests / lib / conds / test_conds
1 #!/bin/bash
2 #
3 # SPDX-License-Identifier: GPL-2.0-only
4 #
5 # Copyright (C) 2020 Philippe Proulx <pproulx@efficios.com>
6
7 if [ "x${BT_TESTS_SRCDIR:-}" != "x" ]; then
8 UTILSSH="$BT_TESTS_SRCDIR/utils/utils.sh"
9 else
10 UTILSSH="$(dirname "$0")/../../utils/utils.sh"
11 fi
12
13 # shellcheck source=../../utils/utils.sh
14 source "$UTILSSH"
15
16 reldir=lib/conds
17 export BT_TESTS_LIB_CONDS_TRIGGER_BIN="$BT_TESTS_BUILDDIR/$reldir/conds-triggers"
18
19 if [ "$BT_TESTS_OS_TYPE" = "mingw" ]; then
20 BT_TESTS_LIB_CONDS_TRIGGER_BIN="$BT_TESTS_LIB_CONDS_TRIGGER_BIN.exe"
21 fi
22
23 run_python_bt2_test "$BT_TESTS_SRCDIR/$reldir" test.py
This page took 0.029433 seconds and 4 git commands to generate.