Cleanup: tests: name all temporary files to better identify leakage
[lttng-tools.git] / tests / regression / ust / high-throughput / test_high_throughput
index a6dbdc758c5e8285c7e6e4919ccbf57f51c787e6..1640e3994f49b795dd9f91dd35e20155f1382f7b 100755 (executable)
@@ -20,7 +20,7 @@ if [ ! -x "$CURDIR/$BIN_NAME" ]; then
        BAIL_OUT "No UST nevents binary detected."
 fi
 
-TRACE_PATH=$(mktemp -d)
+TRACE_PATH=$(mktemp --tmpdir -d tmp.test_high_throughput_ust_trace_path.XXXXXX)
 
 # MUST set TESTDIR before calling those functions
 
@@ -50,8 +50,8 @@ stop_lttng_sessiond
 
 # Validate test
 
-TEMP_FILE=$(mktemp)
-TEMP_FILE_2=$(mktemp)
+TEMP_FILE=$(mktemp --tmpdir tmp.test_high_throughput_tmp_file1.XXXXXX)
+TEMP_FILE_2=$(mktemp --tmpdir tmp.test_high_throughput_tmp_file2.XXXXXX)
 
 traced=$(babeltrace $TRACE_PATH 2>/dev/null | wc -l)
 babeltrace $TRACE_PATH >/dev/null 2>$TEMP_FILE_2
This page took 0.024387 seconds and 4 git commands to generate.