From patchwork Tue Oct 10 11:59:20 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Frederic Weisbecker X-Patchwork-Id: 13415283 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 9F7DDCD80BA for ; Tue, 10 Oct 2023 12:01:44 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231944AbjJJMBn (ORCPT ); Tue, 10 Oct 2023 08:01:43 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:43756 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231880AbjJJMBP (ORCPT ); Tue, 10 Oct 2023 08:01:15 -0400 Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 097F2101; Tue, 10 Oct 2023 05:00:36 -0700 (PDT) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 60636C433C7; Tue, 10 Oct 2023 12:00:33 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1696939235; bh=djkWvlb7qH5eChUEk8EFGaJLa6/2+lr0bMWAb+ydsPY=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=G1l3+AWSPYPCmmaWwpqB8mWw0/lhV3pCOif2vBSSJpSnfG3PRWIazRpni+5zAlCTk cD51VTH5hWl9z5K6wdgHD//uoKonwbgf3QGsA9/QndjQweSxpTYZaKsh6VR9BW03GH v8xmmbJ67KOAvd1todHcoCVq2aY+vVZSA1r7yJ3CtLhCYGIY7OLzx4C5KJyjQCoAj6 VxxcHA8ArwsjYW/awLXObGH8uThWiuC1UHCOE7GK9IEy1RZ5yqGUFDAgkuB0Go42Uh zkNIxiaywfhtMZpW4hrxsTX10aoQhA8n+/nvs012YEOYPN8PdZu6rOndic0we6hGF/ wFccDab5MnBVQ== From: Frederic Weisbecker To: LKML Cc: "Paul E. McKenney" , Boqun Feng , Joel Fernandes , Josh Triplett , Mathieu Desnoyers , Neeraj Upadhyay , Steven Rostedt , Uladzislau Rezki , rcu , Frederic Weisbecker Subject: [PATCH 22/23] torture: Convert parse-console.sh to mktemp Date: Tue, 10 Oct 2023 13:59:20 +0200 Message-Id: <20231010115921.988766-23-frederic@kernel.org> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20231010115921.988766-1-frederic@kernel.org> References: <20231010115921.988766-1-frederic@kernel.org> MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: rcu@vger.kernel.org From: "Paul E. McKenney" This commit does the long-overdue conversion of the parse-console.sh file to use mktemp to create its temporary directory. Signed-off-by: Paul E. McKenney Signed-off-by: Frederic Weisbecker --- tools/testing/selftests/rcutorture/bin/parse-console.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/testing/selftests/rcutorture/bin/parse-console.sh b/tools/testing/selftests/rcutorture/bin/parse-console.sh index e3d2f69ec0fb..b07c11cf6929 100755 --- a/tools/testing/selftests/rcutorture/bin/parse-console.sh +++ b/tools/testing/selftests/rcutorture/bin/parse-console.sh @@ -11,7 +11,7 @@ # # Authors: Paul E. McKenney -T=${TMPDIR-/tmp}/parse-console.sh.$$ +T="`mktemp -d ${TMPDIR-/tmp}/parse-console.sh.XXXXXX`" file="$1" title="$2"