tests/utils/utils.sh: bt_diff(): use `local -r` when possible
[babeltrace.git] / tests / utils / utils.sh
CommitLineData
644e0364 1#!/bin/bash
644e0364 2#
0235b0db 3# SPDX-License-Identifier: GPL-2.0-only
644e0364 4#
0235b0db 5# Copyright (c) 2019 Michael Jeanson <mjeanson@efficios.com>
07ff3b19 6# Copyright (C) 2019-2023 Philippe Proulx <pproulx@efficios.com>
644e0364 7
07ff3b19
PP
8# Source this file at the beginning of a shell script test to access
9# useful testing variables and functions:
10#
11# SH_TAP=1
12#
13# if [[ -n ${BT_TESTS_SRCDIR:-} ]]; then
14# UTILSSH=$BT_TESTS_SRCDIR/utils/utils.sh
15# else
16# UTILSSH=$(dirname "$0")/../utils/utils.sh
17# fi
18#
19# # shellcheck source=../utils/utils.sh
20# source "$UTILSSH"
21#
22# Make sure the relative path to `utils.sh` (this file) above is
23# correct (twice).
644e0364 24
07ff3b19 25# An unbound variable is an error
644e0364
MJ
26set -u
27
07ff3b19
PP
28# Name of the OS on which we're running, if not set.
29#
30# One of:
31#
32# `mingw`: MinGW (Windows)
33# `darwin`: macOS
34# `linux`: Linux
35# `cygwin`: Cygwin (Windows)
36# `unsupported`: Anything else
37#
38# See <https://en.wikipedia.org/wiki/Uname#Examples> for possible values
39# of `uname -s`.
40#
41# Do some translation to ease our life down the road for comparison.
42# Export it so that executed commands can use it.
75e396f6 43if [ -z "${BT_TESTS_OS_TYPE:-}" ]; then
a0baab4a
SM
44 BT_TESTS_OS_TYPE="$(uname -s)"
45 case "$BT_TESTS_OS_TYPE" in
5058d31b 46 MINGW*)
a0baab4a 47 BT_TESTS_OS_TYPE="mingw"
5058d31b
JR
48 ;;
49 Darwin)
a0baab4a 50 BT_TESTS_OS_TYPE="darwin"
5058d31b
JR
51 ;;
52 Linux)
a0baab4a 53 BT_TESTS_OS_TYPE="linux"
5058d31b 54 ;;
df9db467 55 CYGWIN*)
a0baab4a 56 BT_TESTS_OS_TYPE="cygwin"
df9db467 57 ;;
5058d31b 58 *)
a0baab4a 59 BT_TESTS_OS_TYPE="unsupported"
5058d31b
JR
60 ;;
61 esac
62fi
a0baab4a 63export BT_TESTS_OS_TYPE
5058d31b 64
7030f9fe
PP
65# Sets and exports, if not set:
66#
67# • `BT_TESTS_SRCDIR` to the base source directory of tests.
68# • `BT_TESTS_BUILDDIR` to the base build directory of tests.
69_set_vars_srcdir_builddir() {
70 # If `readlink -f` is available, then get a resolved absolute path
71 # to the tests source directory. Otherwise, make do with a relative
72 # path.
73 local -r scriptdir="$(dirname "${BASH_SOURCE[0]}")"
74 local testsdir
644e0364 75
7030f9fe
PP
76 if readlink -f "." >/dev/null 2>&1; then
77 testsdir=$(readlink -f "$scriptdir/..")
78 else
79 testsdir="$scriptdir/.."
80 fi
81
82 # Base source directory of tests
83 if [ -z "${BT_TESTS_SRCDIR:-}" ]; then
84 BT_TESTS_SRCDIR="$testsdir"
85 fi
86 export BT_TESTS_SRCDIR
87
88 # Base build directory of tests
89 if [ -z "${BT_TESTS_BUILDDIR:-}" ]; then
90 BT_TESTS_BUILDDIR="$testsdir"
91 fi
92 export BT_TESTS_BUILDDIR
93}
644e0364 94
7030f9fe
PP
95_set_vars_srcdir_builddir
96unset -f _set_vars_srcdir_builddir
e46cbefe 97
4a162893
PP
98# Sources the generated environment file (`env.sh`) if it exists.
99_source_env_sh() {
100 local -r env_sh_path="$BT_TESTS_BUILDDIR/utils/env.sh"
101
102 if [ -f "${env_sh_path}" ]; then
103 # shellcheck disable=SC1090,SC1091
104 . "${env_sh_path}"
105 fi
106}
107
108_source_env_sh
109unset -f _source_env_sh
644e0364 110
07ff3b19 111# Path to the `babeltrace2` command, if not set
75e396f6 112if [ -z "${BT_TESTS_BT2_BIN:-}" ]; then
4881a20e 113 BT_TESTS_BT2_BIN="$BT_TESTS_BUILDDIR/../src/cli/babeltrace2"
a0baab4a 114 if [ "$BT_TESTS_OS_TYPE" = "mingw" ]; then
27e2c58d
JR
115 BT_TESTS_BT2_BIN="${BT_TESTS_BT2_BIN}.exe"
116 fi
644e0364
MJ
117fi
118export BT_TESTS_BT2_BIN
119
07ff3b19
PP
120# This doesn't need to be exported, but it needs to remain set for
121# run_python_bt2() to use it.
122#
123# TODO: Remove when `tests/bindings/python/bt2/test_plugin.py` is fixed.
315323f4 124_bt_tests_plugins_path="${BT_TESTS_BUILDDIR}/../src/plugins"
644e0364 125
07ff3b19 126# Colon-separated list of project plugin paths, if not set
75e396f6 127if [ -z "${BT_TESTS_BABELTRACE_PLUGIN_PATH:-}" ]; then
315323f4 128 BT_TESTS_BABELTRACE_PLUGIN_PATH="${_bt_tests_plugins_path}/ctf:${_bt_tests_plugins_path}/utils:${_bt_tests_plugins_path}/text:${_bt_tests_plugins_path}/lttng-utils"
644e0364 129fi
e46cbefe 130export BT_TESTS_BABELTRACE_PLUGIN_PATH
644e0364 131
07ff3b19 132# Directory containing the Python plugin provider library, if not set
75e396f6 133if [ -z "${BT_TESTS_PROVIDER_DIR:-}" ]; then
b14c7bf1
MJ
134 BT_TESTS_PROVIDER_DIR="${BT_TESTS_BUILDDIR}/../src/python-plugin-provider/.libs"
135fi
e46cbefe 136export BT_TESTS_PROVIDER_DIR
b14c7bf1 137
07ff3b19 138# Directory containing the built `bt2` Python package, if not set
75e396f6 139if [ -z "${BT_TESTS_PYTHONPATH:-}" ]; then
644e0364
MJ
140 BT_TESTS_PYTHONPATH="${BT_TESTS_BUILDDIR}/../src/bindings/python/bt2/build/build_lib"
141fi
e46cbefe 142export BT_TESTS_PYTHONPATH
644e0364 143
07ff3b19 144# Name of the `awk` command to use when testing, if not set
75e396f6 145if [ -z "${BT_TESTS_AWK_BIN:-}" ]; then
644e0364
MJ
146 BT_TESTS_AWK_BIN="awk"
147fi
148export BT_TESTS_AWK_BIN
149
07ff3b19 150# Name of the `grep` command to use when testing, if not set
75e396f6 151if [ -z "${BT_TESTS_GREP_BIN:-}" ]; then
644e0364
MJ
152 BT_TESTS_GREP_BIN="grep"
153fi
154export BT_TESTS_GREP_BIN
155
07ff3b19 156# Name of the `python3` command to use when testing, if not set
75e396f6 157if [ -z "${BT_TESTS_PYTHON_BIN:-}" ]; then
644e0364
MJ
158 BT_TESTS_PYTHON_BIN="python3"
159fi
160export BT_TESTS_PYTHON_BIN
161
07ff3b19
PP
162# Major and minor version of the `python3` command to use when testing.
163#
164# This doesn't need to be exported, but it needs to remain set for
165# run_python() to use it.
315323f4 166_bt_tests_py3_version=$("$BT_TESTS_PYTHON_BIN" -c 'import sys; print("{}.{}".format(sys.version_info.major, sys.version_info.minor))')
7747a39f 167
07ff3b19 168# Name of the `python3-config` command to use when testing, if not set
75e396f6 169if [ -z "${BT_TESTS_PYTHON_CONFIG_BIN:-}" ]; then
e23e08c4
MJ
170 BT_TESTS_PYTHON_CONFIG_BIN="python3-config"
171fi
242ddcb7 172export BT_TESTS_PYTHON_CONFIG_BIN
e23e08c4 173
07ff3b19 174# Name of the `sed` command to use when testing, if not set
75e396f6 175if [ -z "${BT_TESTS_SED_BIN:-}" ]; then
644e0364
MJ
176 BT_TESTS_SED_BIN="sed"
177fi
178export BT_TESTS_SED_BIN
179
07ff3b19 180# Name of the `cc` command to use when testing, if not set
75e396f6 181if [ -z "${BT_TESTS_CC_BIN:-}" ]; then
0b0893d4
SM
182 BT_TESTS_CC_BIN="cc"
183fi
184export BT_TESTS_CC_BIN
185
07ff3b19 186# Whether or not to enable AddressSanitizer, `0` (disabled) if not set.
ea81414f
PP
187#
188# This doesn't need to be exported from the point of view of this file,
189# but the sourced `env.sh` above does export it.
75e396f6 190if [ -z "${BT_TESTS_ENABLE_ASAN:-}" ]; then
0b0893d4
SM
191 BT_TESTS_ENABLE_ASAN="0"
192fi
0b0893d4 193
07ff3b19 194# Directory containing test data
644e0364 195BT_TESTS_DATADIR="${BT_TESTS_SRCDIR}/data"
07ff3b19
PP
196
197# Directory containing test CTF traces
644e0364 198BT_CTF_TRACES_PATH="${BT_TESTS_DATADIR}/ctf-traces"
644e0364 199
07ff3b19 200# Source the shell TAP utilities if `SH_TAP` is `1`
75e396f6 201if [ "${SH_TAP:-}" = 1 ]; then
e46cbefe
MJ
202 # shellcheck source=./tap/tap.sh
203 . "${BT_TESTS_SRCDIR}/utils/tap/tap.sh"
204fi
205
07ff3b19
PP
206# Removes the CR characters from the file having the path `$1`.
207#
208# This is sometimes needed on Windows with text files.
209#
210# We can't use the `--string-trailing-cr` option of `diff` because
211# Solaris doesn't have it.
90a8a0f2 212bt_remove_cr() {
717a01a7 213 "$BT_TESTS_SED_BIN" -i'' -e 's/\r//g' "$1"
90a8a0f2
SM
214}
215
07ff3b19 216# Prints `$1` without CR characters.
10ba5f69 217bt_remove_cr_inline() {
07ff3b19 218 "$BT_TESTS_SED_BIN" 's/\r//g' "$1"
10ba5f69
OD
219}
220
07ff3b19
PP
221# Runs the `$BT_TESTS_BT2_BIN` command within an environment which can
222# import the `bt2` Python package, redirecting the standard output to
223# the `$1` file and the standard error to the `$2` file.
22703f66 224#
07ff3b19
PP
225# The remaining arguments are forwarded to the `$BT_TESTS_BT2_BIN`
226# command.
22703f66 227#
07ff3b19 228# Returns the exit status of the executed `$BT_TESTS_BT2_BIN`.
22703f66 229bt_cli() {
0824c914
PP
230 local -r stdout_file="$1"
231 local -r stderr_file="$2"
22703f66 232 shift 2
0824c914 233 local -r args=("$@")
22703f66 234
ea458b95 235 echo "Running: $BT_TESTS_BT2_BIN ${args[*]}" >&2
22703f66
SM
236 run_python_bt2 "$BT_TESTS_BT2_BIN" "${args[@]}" 1>"$stdout_file" 2>"$stderr_file"
237}
644e0364 238
07ff3b19 239# Checks the differences between:
ff89ed28 240#
07ff3b19 241# • The (expected) contents of the file having the path `$1`.
ff89ed28 242#
07ff3b19 243# • The contents of another file having the path `$2`.
ff89ed28 244#
07ff3b19
PP
245# Both files are passed through bt_remove_cr_inline() to remove CR
246# characters.
247#
248# Returns 0 if there's no difference, or not zero otherwise.
ff89ed28 249bt_diff() {
61ef15c9
PP
250 local -r expected_file="$1"
251 local -r actual_file="$2"
ff89ed28 252 local ret=0
ff89ed28 253
10ba5f69 254 diff -u <(bt_remove_cr_inline "$expected_file") <(bt_remove_cr_inline "$actual_file") 1>&2
ff89ed28 255
ea458b95 256 return $?
ff89ed28
MJ
257}
258
58db335e
FD
259# Checks the difference between:
260#
07ff3b19
PP
261# • What the `$BT_TESTS_BT2_BIN` command prints to its standard output
262# when given the third and following arguments of this function.
263#
264# • The file having the path `$1`.
265#
266# as well as the difference between:
58db335e 267#
07ff3b19
PP
268# • What the `$BT_TESTS_BT2_BIN` command prints to its standard error
269# when given the third and following arguments of this function.
58db335e 270#
07ff3b19 271# • The file having the path `$2`.
644e0364 272#
07ff3b19
PP
273# Returns 0 if there's no difference, or 1 otherwise, also printing said
274# difference to the standard error.
644e0364 275bt_diff_cli() {
58db335e
FD
276 local expected_stdout_file="$1"
277 local expected_stderr_file="$2"
278 shift 2
53cc240b
MJ
279 local args=("$@")
280
58db335e
FD
281 local temp_stdout_output_file
282 local temp_stderr_output_file
644e0364 283 local ret=0
a70b6702
SM
284 local ret_stdout
285 local ret_stderr
644e0364 286
7132b838
PP
287 temp_stdout_output_file="$(mktemp -t actual-stdout.XXXXXX)"
288 temp_stderr_output_file="$(mktemp -t actual-stderr.XXXXXX)"
644e0364 289
22703f66 290 bt_cli "$temp_stdout_output_file" "$temp_stderr_output_file" "${args[@]}"
58db335e 291
a70b6702
SM
292 bt_diff "$expected_stdout_file" "$temp_stdout_output_file" "${args[@]}"
293 ret_stdout=$?
294 bt_diff "$expected_stderr_file" "$temp_stderr_output_file" "${args[@]}"
295 ret_stderr=$?
296
297 if ((ret_stdout != 0 || ret_stderr != 0)); then
298 ret=1
299 fi
58db335e 300
ff89ed28 301 rm -f "$temp_stdout_output_file" "$temp_stderr_output_file"
644e0364 302
ff89ed28
MJ
303 return $ret
304}
305
07ff3b19
PP
306# Checks the difference between:
307#
308# • The content of the file having the path `$1`.
309#
310# • What the `$BT_TESTS_BT2_BIN` command prints to the standard output
311# when executed with:
312#
313# 1. The CTF trace directory `$2`.
314# 2. The arguments `-c` and `sink.text.details`.
315# 3. The third and following arguments of this function.
644e0364 316#
07ff3b19
PP
317# Returns 0 if there's no difference, or 1 otherwise, also printing said
318# difference to the standard error.
644e0364 319bt_diff_details_ctf_single() {
58db335e 320 local expected_stdout_file="$1"
53cc240b
MJ
321 local trace_dir="$2"
322 shift 2
323 local extra_details_args=("$@")
58db335e 324 expected_stderr_file="/dev/null"
644e0364
MJ
325
326 # Compare using the CLI with `sink.text.details`
8b729209
PP
327 bt_diff_cli "$expected_stdout_file" "$expected_stderr_file" "$trace_dir" \
328 "-c" "sink.text.details" "${extra_details_args[@]+${extra_details_args[@]}}"
644e0364
MJ
329}
330
07ff3b19
PP
331# Like bt_diff_details_ctf_single(), except that `$1` is the path to a
332# program which generates the CTF trace to compare to.
333#
334# The program `$1` receives the path to a temporary, empty directory
335# where to write the CTF trace as its first argument.
644e0364
MJ
336bt_diff_details_ctf_gen_single() {
337 local ctf_gen_prog_path="$1"
58db335e 338 local expected_stdout_file="$2"
53cc240b
MJ
339 shift 2
340 local extra_details_args=("$@")
644e0364
MJ
341
342 local temp_trace_dir
343 local ret
344
345 temp_trace_dir="$(mktemp -d)"
346
347 # Run the CTF trace generator program to get a CTF trace
348 if ! "$ctf_gen_prog_path" "$temp_trace_dir" 2>/dev/null; then
349 echo "ERROR: \"$ctf_gen_prog_path\" \"$temp_trace_dir\" failed" >&2
350 rm -rf "$temp_trace_dir"
351 return 1
352 fi
353
354 # Compare using the CLI with `sink.text.details`
8b729209
PP
355 bt_diff_details_ctf_single "$expected_stdout_file" "$temp_trace_dir" \
356 "${extra_details_args[@]+${extra_details_args[@]}}"
644e0364
MJ
357 ret=$?
358 rm -rf "$temp_trace_dir"
359 return $ret
360}
361
07ff3b19 362# Like `grep`, but using `$BT_TESTS_GREP_BIN`.
407d3b10
SM
363bt_grep() {
364 "$BT_TESTS_GREP_BIN" "$@"
365}
644e0364 366
db01f759
SM
367# ok() with the test name `$3` on the result of bt_grep() matching the
368# pattern `$1` within the file `$2`.
369bt_grep_ok() {
370 local pattern=$1
371 local file=$2
372 local test_name=$3
373
374 bt_grep --silent "$pattern" "$file"
375
376 local ret=$?
377
378 if ! ok $ret "$test_name"; then
379 {
380 echo "Pattern \`$pattern\` doesn't match the contents of \`$file\`:"
381 echo '--- 8< ---'
382 cat "$file"
383 echo '--- >8 ---'
384 } >&2
385 fi
386
387 return $ret
388}
389
07ff3b19 390# Forwards the arguments to `coverage run`.
644e0364
MJ
391check_coverage() {
392 coverage run "$@"
393}
394
07ff3b19
PP
395# Executes a command within an environment which can import the testing
396# Python modules (in `tests/utils/python`).
1e14ec65 397run_python() {
7747a39f
PP
398 local our_pythonpath="${BT_TESTS_SRCDIR}/utils/python"
399
315323f4 400 if [[ $_bt_tests_py3_version =~ 3.[45] ]]; then
07ff3b19
PP
401 # Add a local directory containing a `typing.py` to `PYTHONPATH`
402 # for Python 3.4 and Python 3.5 which either don't offer the
403 # `typing` module at all, or offer a partial one.
7747a39f
PP
404 our_pythonpath="$our_pythonpath:${BT_TESTS_SRCDIR}/utils/python/typing"
405 fi
406
407 PYTHONPATH="${our_pythonpath}${PYTHONPATH:+:}${PYTHONPATH:-}" "$@"
1e14ec65
PP
408}
409
07ff3b19
PP
410# Executes a command within an environment which can import the testing
411# Python modules (in `tests/utils/python`) and the `bt2` Python package.
644e0364 412run_python_bt2() {
0b0893d4 413 local lib_asan
1e14ec65
PP
414 local -x "BABELTRACE_PLUGIN_PATH=${BT_TESTS_BABELTRACE_PLUGIN_PATH}"
415 local -x "LIBBABELTRACE2_PLUGIN_PROVIDER_DIR=${BT_TESTS_PROVIDER_DIR}"
416 local -x "BT_TESTS_DATADIR=${BT_TESTS_DATADIR}"
417 local -x "BT_CTF_TRACES_PATH=${BT_CTF_TRACES_PATH}"
315323f4 418 local -x "BT_PLUGINS_PATH=${_bt_tests_plugins_path}"
1e14ec65 419 local -x "PYTHONPATH=${BT_TESTS_PYTHONPATH}${PYTHONPATH:+:}${PYTHONPATH:-}"
644e0364 420
0408934a
SM
421 local main_lib_path="${BT_TESTS_BUILDDIR}/../src/lib/.libs"
422
07ff3b19
PP
423 # Set the library search path so that the Python 3 interpreter can
424 # load `libbabeltrace2`.
a0baab4a 425 if [ "$BT_TESTS_OS_TYPE" = "mingw" ] || [ "$BT_TESTS_OS_TYPE" = "cygwin" ]; then
1e14ec65 426 local -x PATH="${main_lib_path}${PATH:+:}${PATH:-}"
a0baab4a 427 elif [ "$BT_TESTS_OS_TYPE" = "darwin" ]; then
1e14ec65 428 local -x DYLD_LIBRARY_PATH="${main_lib_path}${DYLD_LIBRARY_PATH:+:}${DYLD_LIBRARY_PATH:-}"
644e0364 429 else
1e14ec65 430 local -x LD_LIBRARY_PATH="${main_lib_path}${LD_LIBRARY_PATH:+:}${LD_LIBRARY_PATH:-}"
e23e08c4
MJ
431 fi
432
07ff3b19
PP
433 # On Windows, an embedded Python 3 interpreter needs a way to locate
434 # the path to its internal modules: set the `PYTHONHOME` variable to
435 # the prefix from `python3-config`.
a0baab4a 436 if [ "$BT_TESTS_OS_TYPE" = "mingw" ]; then
1e14ec65
PP
437 local -x PYTHONHOME
438
e612f2da 439 PYTHONHOME=$("$BT_TESTS_PYTHON_CONFIG_BIN" --prefix)
644e0364
MJ
440 fi
441
07ff3b19 442 # If AddressSanitizer is used, we must preload `libasan.so` so that
0b0893d4
SM
443 # libasan doesn't complain about not being the first loaded library.
444 #
07ff3b19
PP
445 # Python and sed (executed as part of the Libtool wrapper) produce
446 # some leaks, so we must unfortunately disable leak detection.
447 #
448 # Append it to existing `ASAN_OPTIONS` variable, such that we
449 # override the user's value if it contains `detect_leaks=1`.
75e396f6 450 if [ "${BT_TESTS_ENABLE_ASAN:-}" = "1" ]; then
e612f2da
PP
451 if "${BT_TESTS_CC_BIN}" --version | head -n 1 | bt_grep -q '^gcc'; then
452 lib_asan="$("${BT_TESTS_CC_BIN}" -print-file-name=libasan.so)"
1e14ec65 453 local -x LD_PRELOAD="${lib_asan}${LD_PRELOAD:+:}${LD_PRELOAD:-}"
2d12d310 454 fi
0b0893d4 455
1e14ec65 456 local -x "ASAN_OPTIONS=${ASAN_OPTIONS:-}${ASAN_OPTIONS:+,}detect_leaks=0"
0b0893d4
SM
457 fi
458
1e14ec65 459 run_python "$@"
644e0364
MJ
460}
461
07ff3b19
PP
462# Runs the Python tests matching the pattern `$2` (optional, `*` if
463# missing) in the directory `$1` using `testrunner.py`.
644e0364 464#
07ff3b19
PP
465# This function uses run_python_bt2(), therefore such tests can import
466# the testing Python modules (in `tests/utils/python`) and the `bt2`
467# Python package.
644e0364
MJ
468run_python_bt2_test() {
469 local test_dir="$1"
07ff3b19 470 local test_pattern="${2:-'*'}"
644e0364
MJ
471
472 local ret
473 local test_runner_args=()
474
475 test_runner_args+=("$test_dir")
75e396f6 476 if [ -n "${test_pattern}" ]; then
644e0364
MJ
477 test_runner_args+=("${test_pattern}")
478 fi
479
75e396f6 480 if test "${BT_TESTS_COVERAGE:-}" = "1"; then
644e0364
MJ
481 python_exec="check_coverage"
482 else
483 python_exec="${BT_TESTS_PYTHON_BIN}"
484 fi
485
486 run_python_bt2 \
487 "${python_exec}" \
488 "${BT_TESTS_SRCDIR}/utils/python/testrunner.py" \
a818a617
FD
489 --pattern "$test_pattern" \
490 "$test_dir" \
491
644e0364
MJ
492 ret=$?
493
75e396f6 494 if test "${BT_TESTS_COVERAGE_REPORT:-}" = "1"; then
644e0364
MJ
495 coverage report -m
496 fi
497
75e396f6 498 if test "${BT_TESTS_COVERAGE_HTML:-}" = "1"; then
644e0364
MJ
499 coverage html
500 fi
501
502 return $ret
503}
89ec984e 504
07ff3b19
PP
505# Generates a CTF trace into the directory `$2` from the moultipart
506# document `$1` using `mctf.py`.
89ec984e
SM
507gen_mctf_trace() {
508 local input_file="$1"
509 local base_dir="$2"
510
511 diag "Running: ${BT_TESTS_PYTHON_BIN} ${BT_TESTS_SRCDIR}/utils/python/mctf.py --base-dir ${base_dir} ${input_file}"
ec48dce5 512 run_python "${BT_TESTS_PYTHON_BIN}" "${BT_TESTS_SRCDIR}/utils/python/mctf.py" \
89ec984e
SM
513 --base-dir "${base_dir}" "${input_file}"
514}
This page took 0.083128 seconds and 4 git commands to generate.