X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=tests%2Futils%2Futils.sh;h=4282fbb6983dfc6a42b412d8a636d9c6861a6204;hp=454627eaae3ad6115b598f3067d1f81410899631;hb=568d7e2db7370f57e9612eb9b8c1a6b0bf5213cd;hpb=67b4c664e2c6c6dc19920555c0abf094ed6cbe00 diff --git a/tests/utils/utils.sh b/tests/utils/utils.sh index 454627eaa..4282fbb69 100644 --- a/tests/utils/utils.sh +++ b/tests/utils/utils.sh @@ -138,12 +138,12 @@ function lttng_enable_kernel_syscall() function lttng_enable_kernel_syscall_ok() { - lttng_enable_kernel_syscall 0 ${*} + lttng_enable_kernel_syscall 0 "$@" } function lttng_enable_kernel_syscall_fail() { - lttng_enable_kernel_syscall 1 ${*} + lttng_enable_kernel_syscall 1 "$@" } function lttng_disable_kernel_syscall() @@ -178,12 +178,12 @@ function lttng_disable_kernel_syscall() function lttng_disable_kernel_syscall_ok() { - lttng_disable_kernel_syscall 0 ${*} + lttng_disable_kernel_syscall 0 "$@" } function lttng_disable_kernel_syscall_fail() { - lttng_disable_kernel_syscall 1 ${*} + lttng_disable_kernel_syscall 1 "$@" } function lttng_enable_kernel_channel() @@ -204,12 +204,12 @@ function lttng_enable_kernel_channel() function lttng_enable_kernel_channel_ok() { - lttng_enable_kernel_channel 0 ${*} + lttng_enable_kernel_channel 0 "$@" } function lttng_enable_kernel_channel_fail() { - lttng_enable_kernel_channel 1 ${*} + lttng_enable_kernel_channel 1 "$@" } function lttng_disable_kernel_channel() @@ -230,12 +230,12 @@ function lttng_disable_kernel_channel() function lttng_disable_kernel_channel_ok() { - lttng_disable_kernel_channel 0 ${*} + lttng_disable_kernel_channel 0 "$@" } function lttng_disable_kernel_channel_fail() { - lttng_disable_kernel_channel 1 ${*} + lttng_disable_kernel_channel 1 "$@" } function start_lttng_relayd @@ -744,13 +744,13 @@ function destroy_lttng_sessions () function lttng_snapshot_add_output () { - local sess_name=$1 - local trace_path=$2 - local expected_to_fail=$3 + local expected_to_fail=$1 + local sess_name=$2 + local trace_path=$3 $TESTDIR/../src/bin/lttng/$LTTNG_BIN snapshot add-output -s $sess_name file://$trace_path >$OUTPUT_DEST ret=$? - if [[ $expected_to_fail ]]; then + if [[ $expected_to_fail -eq 1 ]]; then test "$ret" -ne "0" ok $? "Failed to add a snapshot output file://$trace_path as expected" else @@ -758,15 +758,25 @@ function lttng_snapshot_add_output () fi } +function lttng_snapshot_add_output_ok () +{ + lttng_snapshot_add_output 0 "$@" +} + +function lttng_snapshot_add_output_fail () +{ + lttng_snapshot_add_output 1 "$@" +} + function lttng_snapshot_del_output () { - local sess_name=$1 - local id=$2 - local expected_to_fail=$3 + local expected_to_fail=$1 + local sess_name=$2 + local id=$3 $TESTDIR/../src/bin/lttng/$LTTNG_BIN snapshot del-output -s $sess_name $id >$OUTPUT_DEST ret=$? - if [[ $expected_to_fail ]]; then + if [[ $expected_to_fail -eq "1" ]]; then test "$ret" -ne "0" ok $? "Expect fail on deletion of snapshot output id $id" else @@ -774,6 +784,16 @@ function lttng_snapshot_del_output () fi } +function lttng_snapshot_del_output_ok () +{ + lttng_snapshot_del_output 0 "$@" +} + +function lttng_snapshot_del_output_fail () +{ + lttng_snapshot_del_output 1 "$@" +} + function lttng_snapshot_record () { local sess_name=$1