Rename lttng_event_rule_syscall to lttng_event_rule_kernel_syscall
[lttng-tools.git] / tests / regression / tools / trigger / test_add_trigger_cli
index cf45b4e9679d55fe5a44b6940a677c46fe42f413..029f17cef6d139722a319b909aba8fdb0d4824bc 100755 (executable)
@@ -23,15 +23,15 @@ TESTDIR="$CURDIR/../../.."
 # shellcheck source=../../../utils/utils.sh
 source "$TESTDIR/utils/utils.sh"
 
-plan_tests 285
+plan_tests 297
 
 FULL_LTTNG_BIN="${TESTDIR}/../src/bin/lttng/${LTTNG_BIN}"
 
 # shellcheck disable=SC2119
 start_lttng_sessiond_notap
 
-tmp_stdout=$(mktemp -t test_parse_cli_trigger_stdout.XXXXXX)
-tmp_stderr=$(mktemp -t test_parse_cli_trigger_stderr.XXXXXX)
+tmp_stdout=$(mktemp --tmpdir -t test_parse_cli_trigger_stdout.XXXXXX)
+tmp_stderr=$(mktemp --tmpdir -t test_parse_cli_trigger_stderr.XXXXXX)
 uprobe_elf_binary="${TESTDIR}/utils/testapp/userspace-probe-elf-binary/.libs/userspace-probe-elf-binary"
 
 if [ "$(id -u)" == "0" ]; then
@@ -190,7 +190,7 @@ skip $ist_root "non-root user: skipping uprobe tests" 12 || {
        done
 }
 
-skip $ist_root "non-root user: skipping syscall tests" 18 || {
+skip $ist_root "non-root user: skipping syscall tests" 30 || {
        test_success "--condition event-rule-matches one syscall" \
                --condition event-rule-matches --domain=kernel --type=syscall --name=open \
                --action notify
@@ -211,6 +211,22 @@ skip $ist_root "non-root user: skipping syscall tests" 18 || {
        test_success "--condition event-rule-matches one syscall:entry-exit" \
                --condition event-rule-matches --domain=kernel --type=syscall:entry+exit --name=open \
                --action notify
+
+       # Same thing but with "kernel:syscall" type instead:
+       test_success "--condition event-rule-matches one syscall" \
+               --condition event-rule-matches --domain=kernel --type=kernel:syscall --name=open \
+               --action notify
+
+       test_success "--condition event-rule-matches one kernel:syscall:entry" \
+               --condition event-rule-matches --domain=kernel --type=kernel:syscall:entry --name=open \
+               --action notify
+       test_success "--condition event-rule-matches one kernel:syscall:exit" \
+               --condition event-rule-matches --domain=kernel --type=kernel:syscall:exit --name=open \
+               --action notify
+       test_success "--condition event-rule-matches one kernel:syscall:entry-exit" \
+               --condition event-rule-matches --domain=kernel --type=kernel:syscall:entry+exit --name=open \
+               --action notify
+
 }
 
 # `--action notify` successes
This page took 0.02608 seconds and 4 git commands to generate.