tests/utils/utils.sh: gen_mctf_trace() -> bt_gen_mctf_trace()
authorPhilippe Proulx <eeppeliteloop@gmail.com>
Fri, 10 Nov 2023 21:36:27 +0000 (16:36 -0500)
committerPhilippe Proulx <eeppeliteloop@gmail.com>
Wed, 7 Feb 2024 21:25:56 +0000 (16:25 -0500)
Adding the `bt_` prefix like other functions in `utils.sh`.

Signed-off-by: Philippe Proulx <eeppeliteloop@gmail.com>
Change-Id: I682317576133727155778a79fc6716a83697e18e

tests/plugins/src.ctf.lttng-live/test-live.sh
tests/utils/utils.sh

index e488289b0366cad621fc84f24fd7e66181ee8379..4c904d2f524c1438f0063c48e552ef66ca8af1d5 100755 (executable)
@@ -385,7 +385,7 @@ test_stored_values() {
        tmp_dir=$(mktemp -d -t 'test-stored-value.XXXXXXX')
 
        # Generate test trace.
-       gen_mctf_trace "${trace_dir}/live/stored-values.mctf" "$tmp_dir/stored-values"
+       bt_gen_mctf_trace "${trace_dir}/live/stored-values.mctf" "$tmp_dir/stored-values"
 
        run_test "$test_text" "$cli_args_template" "$expected_stdout" \
                "$expected_stderr" "$tmp_dir" "${server_args[@]}"
index 59f5eca11799cb1ee101872554b28d830f2b1040..60e5d56e8bd5daaac2d8d21de921856f9e461c31 100644 (file)
@@ -475,7 +475,7 @@ bt_run_py_test() {
 
 # Generates a CTF trace into the directory `$2` from the moultipart
 # document `$1` using `mctf.py`.
-gen_mctf_trace() {
+bt_gen_mctf_trace() {
        local -r input_file=$1
        local -r base_dir=$2
        local -r cmd=(
This page took 0.025019 seconds and 4 git commands to generate.