From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id D2A113C457F for ; Mon, 20 Apr 2026 19:30:48 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1776713448; cv=none; b=NTRNhukMfe7lKNSZ8+j3GJBxlxBIVwFHuM9NHD+NwECUp4dAOa3eXkx36XAnlvV2+4c/jb9gjShJxQWoOEaG4YFVz1MfcsSnEycLG32Q74OmdbAmYPFLYFrjIWBTIomsuv8Oz0RF482hy2A5W356CbZ6y5mUinyNa8l2X0wZv2Y= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1776713448; c=relaxed/simple; bh=h76lbgsfML8KMV1I0gVmHOsn9HpLhyPz75+tqTeItyA=; h=Message-ID:Date:From:To:Cc:Subject; b=niwFomjKNo+8a2yJ1OYev1wAGiYHS+1mavtaxv+ruByrpqBA84oP4pVthggqiuKhTxjwrMc0hyVIMFmICvTtcPIXt28MKmSv1RARLjTAMqI3GH1A4pVhlDqvxRMyi9RSNdrPd5lXnPEZWi008N8UbgL2N5nIRUsX0vBuahCDFl0= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=hh8cYAef; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="hh8cYAef" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 8D885C19425; Mon, 20 Apr 2026 19:30:48 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1776713448; bh=h76lbgsfML8KMV1I0gVmHOsn9HpLhyPz75+tqTeItyA=; h=Date:From:To:Cc:Subject:From; b=hh8cYAefOM0DinOYNqH2Y9SGlxirtjg2h3ieGhcz8fzHIc/GJ6OhJziuWG5xI+A/n YCUOaVZ4BuT1/+tegL6lXJItmncVzlFgNj4kjMMNbiS6wHQ3W2IUgtso8Do1iFY4Jw Em4hG7/tKfOG89s5O1ceT5xlgkdexQMPuMMX73QrDTtW3XZNfB5ndvUT8/YwY2pmRq Oj+1G0YpHWKuRkS7G/UpHiYNWOEqMPvRO5xkK4t0Rc22DkGt9j9jJXD/09CHX5eS02 0Jq7AyfT0QARwTmkomNX9AFp/yYreOCgeqevLqPaZleYmWMgPWAbKKb9nCyKQcDdsy dCLsbRWBZ/ayA== Received: from rostedt by gandalf with local (Exim 4.99.1) (envelope-from ) id 1wEuMC-00000006vwE-40bv; Mon, 20 Apr 2026 15:32:32 -0400 Message-ID: <20260420193203.993782513@kernel.org> User-Agent: quilt/0.69 Date: Mon, 20 Apr 2026 15:32:03 -0400 From: Steven Rostedt To: linux-kernel@vger.kernel.org Cc: "John Warthog9 Hawley" Subject: [for-linus][PATCH 0/2] ktest: Fixes for v7.1 Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: ktest updates for v7.1: - Fix date timestamp of failure directory When a ktest fails, if STORE_FAILURES is set, then if a test fails, it copies various files to a created directory in the STORE_FAILURES location (like the .config used, and some other files). To create the timestamp portion of the directory name, the Perl function localtime() is used. The month field starts from 0 and the code does not account for this. That is, the date of April 20, 2026 will be displayed as 20260320 instead of 20260420. Add one to the month to have the date be more accurate. - Save the entire log file in the failure directory The logfile that keeps track of all tests contains boot messages, error messages, dmesg, etc. This information is very useful in figuring out why a test failed. Save the logfile in the failure directory as well. git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-ktest.git for-next Head SHA1: 932cdaf3e273a2727e77af97f79f12577174c5a0 Steven Rostedt (2): ktest: Fix the month in the name of the failure directory ktest: Add logfile to failure directory ---- tools/testing/ktest/ktest.pl | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-)