Fix: syscall event rule: emission sites not compared in is_equal
[lttng-tools.git] / tests / regression / ust / python-logging / test_python_logging.in
index be0422cf037884533e8716ee3a065aac3f5b0da8..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,7 +688,7 @@ 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"
 
@@ -700,6 +700,7 @@ function test_python_trigger_notify_action
          owner uid: ${uid}
          condition: event rule matches
            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.024445 seconds and 4 git commands to generate.