.gitignore: ignore local vscode workspace settings file
[lttng-tools.git] / tests / regression / ust / python-logging / test_python_logging.in
index 5de8dd72f72e489e75f55f0959871b0e5db3ffbd..0bb7ef24d82989e77ed71b945c3fcf6dcd6fa6ab 100755 (executable)
@@ -106,8 +106,8 @@ function enable_python_filter_loglevel_only()
 
 function test_python_before_start ()
 {
-       local ready_file=$(mktemp --tmpdir -u)
-       local go_file=$(mktemp --tmpdir -u)
+       local ready_file=$(mktemp -u -t)
+       local go_file=$(mktemp -u -t)
 
        diag "Test Python application BEFORE tracing starts"
        create_lttng_session_ok $SESSION_NAME $TRACE_PATH
@@ -688,18 +688,19 @@ function test_python_filter_loglevel()
 function test_python_trigger_notify_action
 {
        uid=$(id --user)
-       tmp_expected_stdout=$(mktemp --tmpdir -t test_list_triggers_python_cli_expected_stdout.XXXXXX)
+       tmp_expected_stdout=$(mktemp -t test_list_triggers_python_cli_expected_stdout.XXXXXX)
 
        diag "Test Python trigger with notify action"
 
        lttng_add_trigger_ok "my_python_trigger" \
-               --condition event-rule-matches --domain=python --action notify
+               --condition event-rule-matches --type=python --action notify
 
        cat > "${tmp_expected_stdout}" <<- EOF
        - name: my_python_trigger
          owner uid: ${uid}
          condition: event rule matches
-           rule: * (type: tracepoint, domain: python)
+           rule: * (type: python:logging)
+           errors: none
          actions:
            notify
              errors: none
@@ -753,7 +754,7 @@ skip $skip_agent "Python agent test skipped." $NUM_TESTS ||
        do
                for fct_test in ${tests[@]};
                do
-                       TRACE_PATH=$(mktemp --tmpdir -d tmp.test_python_logging_trace_path.XXXXXX)
+                       TRACE_PATH=$(mktemp -d -t tmp.test_python_logging_trace_path.XXXXXX)
 
                        diag "(Python $python_version)"
                        ${fct_test} $python_version
This page took 0.025783 seconds and 4 git commands to generate.