Cleanup: tests: name all temporary files to better identify leakage
[lttng-tools.git] / tests / regression / kernel / test_lttng_logger
index b0a53fec06abfe2973cc636027f86bddd6594ce0..9fa8ca33f30aa2095b931b575aaa376f226c8bd9 100755 (executable)
@@ -1,19 +1,9 @@
 #!/bin/bash
 #
-# Copyright (C) 2017 Julien Desfossez <jdesfossez@efficios.com>
+# Copyright (C) 2017 Julien Desfossez <jdesfossez@efficios.com>
 #
-# This program is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License, version 2 only, as
-# published by the Free Software Foundation.
+# SPDX-License-Identifier: GPL-2.0-only
 #
-# This program is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
-# more details.
-#
-# You should have received a copy of the GNU General Public License along with
-# this program; if not, write to the Free Software Foundation, Inc., 51
-# Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 
 TEST_DESC="Kernel tracer - lttng-logger"
 
@@ -29,7 +19,7 @@ function test_proc_logger()
 {
        diag "Test /proc/lttng-logger"
 
-       TRACE_PATH=$(mktemp -d)
+       local TRACE_PATH=$(mktemp --tmpdir -d -t "tmp.${FUNCNAME[0]}_trace_path.XXXXXX")
 
        create_lttng_session_ok $SESSION_NAME $TRACE_PATH
 
@@ -60,7 +50,7 @@ function test_dev_logger()
 {
        diag "Test /dev/lttng-logger"
 
-       TRACE_PATH=$(mktemp -d)
+       local TRACE_PATH=$(mktemp --tmpdir -d -t "tmp.${FUNCNAME[0]}_trace_path.XXXXXX")
 
        create_lttng_session_ok $SESSION_NAME $TRACE_PATH
 
@@ -91,7 +81,7 @@ function test_payload_limit()
 {
        diag "Test lttng-logger payload limit"
 
-       TRACE_PATH=$(mktemp -d)
+       local TRACE_PATH=$(mktemp --tmpdir -d -t "tmp.${FUNCNAME[0]}_trace_path.XXXXXX")
 
        create_lttng_session_ok $SESSION_NAME $TRACE_PATH
 
This page took 0.039649 seconds and 4 git commands to generate.