Cleanup: tests: name all temporary files to better identify leakage
[lttng-tools.git] / tests / regression / tools / trigger / test_add_trigger_cli
index de50c9f0fe25ed5277c71e4ee4e8018d0b865a61..0b551d4d1719e0a45d18ae9a02616e6a033bd9a2 100755 (executable)
@@ -23,15 +23,15 @@ TESTDIR="$CURDIR/../../.."
 # shellcheck source=../../../utils/utils.sh
 source "$TESTDIR/utils/utils.sh"
 
-plan_tests 276
+plan_tests 285
 
 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
@@ -138,6 +138,14 @@ test_success "--log-level range any" \
        --condition event-rule-matches --domain=user --log-level=.. \
        --action notify
 
+test_success "--exclude-name one" \
+       --condition event-rule-matches --domain=user --name='bernard*' --exclude-name=bernard-lermite \
+       --action notify
+
+test_success "--exclude-name two" \
+       --condition event-rule-matches --domain=user --name='jean-*' --exclude-name jean-chretien -x jean-charest \
+       --action notify
+
 skip $ist_root "non-root user: skipping kprobe tests" 18 || {
        for type in kprobe kernel-probe; do
                test_success "--condition event-rule-matches probe by symbol" \
@@ -371,6 +379,11 @@ test_failure "--condition event-rule-matches: --type=syscall:nope" \
        --condition event-rule-matches --domain=kernel --type=syscall:nope \
        --name=open
 
+test_failure "--exclude-name with non-glob name" \
+       "Error: Event jean: Exclusions can only be used with a globbing pattern" \
+       --condition event-rule-matches --domain=user --name='jean' --exclude-name jean-chretien \
+       --action notify
+
 test_failure "--condition event-rule-matches --capture: missing argument (end of arg list)" \
        'Error: While parsing argument #2 (`--capture`): Missing required argument for option `--capture`' \
        --action notify \
This page took 0.023741 seconds and 4 git commands to generate.