X-Git-Url: https://git.liburcu.org/?a=blobdiff_plain;f=tests%2Futils%2Futils.sh;h=05d88650e9f369bfd84ed939c405967d2de314b3;hb=192ac418bed152e8655e250e723d3c6b8814c747;hp=8e40407aa615de3bd41f2f903bb6e6a4ecb8091a;hpb=fe559816ac5b48739c91eccdeeaee8ccde6eacc4;p=lttng-tools.git diff --git a/tests/utils/utils.sh b/tests/utils/utils.sh index 8e40407aa..05d88650e 100644 --- a/tests/utils/utils.sh +++ b/tests/utils/utils.sh @@ -1139,10 +1139,27 @@ function lttng_save() function lttng_load() { - local opts=$1 + local expected_to_fail=$1 + local opts=$2 $TESTDIR/../src/bin/lttng/$LTTNG_BIN load $opts 1> $OUTPUT_DEST 2> $ERROR_OUTPUT_DEST - ok $? "Load command with opts: $opts" + ret=$? + if [[ $expected_to_fail -eq "1" ]]; then + test $ret -ne "0" + ok $? "Load command failed as expected with opts: $opts" + else + ok $ret "Load command with opts: $opts" + fi +} + +function lttng_load_ok() +{ + lttng_load 0 "$@" +} + +function lttng_load_fail() +{ + lttng_load 1 "$@" } function lttng_track()