From nobody Sun Feb 8 18:48:54 2026 Received: from out-185.mta0.migadu.com (out-185.mta0.migadu.com [91.218.175.185]) (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 7DD48334C39 for ; Mon, 10 Nov 2025 23:27:16 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=91.218.175.185 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1762817238; cv=none; b=ZXYU0U5cqYwoXylor7lhvUHuktR1M6p2pYRwDGhjoL/aNKMJ98/CdRzNep98OLbbiEfjhaJmyjZFRO3zdAbfmeaexX+Q1znw5XMPdcexrbyAWVnUVEcdy5wdkn3l0aJzwqejyp7uqygXPqn4d394S3kaSuGxr4/dVa9RSrq8WNc= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1762817238; c=relaxed/simple; bh=rpfDgqidyPWkJvbfQrUH3FWWbV73z2PcFhtllZsBmRU=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=nIWPl5a5ChS+SgrOGLGPeZXJtZR1fNcgLynsTZXlug1ibHeQXweGECUTNExL0S6V0QiAL9QUnsfTt8o0ANr9hy0h19nrZyJoVB/kMVkp17Ak+kiMK7jIyb/2PdoqWmScuMsJONRCNZhBvqI3L2rwWSb9PmS/B9reig5URf+ZDEU= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev; spf=pass smtp.mailfrom=linux.dev; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b=J5jS/2vT; arc=none smtp.client-ip=91.218.175.185 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=linux.dev Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b="J5jS/2vT" X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1762817234; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=NvxWO7Z2fxzmqFnB8S5HGEATExYEtFR4E6TDw6nRLGY=; b=J5jS/2vT82L5axIpJdFLpzwfBt4l6S2a3lqbXcGNYf0Kweua6Jw3qLOzmvat+qL3KdDeF7 tTj+P0T9jh8E6ZEd7Cuttf4O1caGv7Ss28oBCAwvcanKeZgOWpx/7Va+c+QY6LikR1ELLE KGLOwHkhBkaDR43Ik0/NnSreZU7jh7I= From: Yosry Ahmed To: Sean Christopherson Cc: Paolo Bonzini , Kevin Cheng , kvm@vger.kernel.org, linux-kernel@vger.kernel.org, Yosry Ahmed Subject: [PATCH v3 08/14] x86/svm: Print SVM test names before running tests Date: Mon, 10 Nov 2025 23:26:36 +0000 Message-ID: <20251110232642.633672-9-yosry.ahmed@linux.dev> In-Reply-To: <20251110232642.633672-1-yosry.ahmed@linux.dev> References: <20251110232642.633672-1-yosry.ahmed@linux.dev> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-Migadu-Flow: FLOW_OUT Content-Type: text/plain; charset="utf-8" When SVM tests are run, the log is a see of PASS/FAIL/SKIPs that are not clearly separated by test. Sometimes it's hard to attribute a failure to a specific test (e.g. if the same helper is reused by multiple tests). Print the test name before running each test. Signed-off-by: Yosry Ahmed --- x86/svm.c | 1 + 1 file changed, 1 insertion(+) diff --git a/x86/svm.c b/x86/svm.c index 5015339ddb657..de9eb19443caa 100644 --- a/x86/svm.c +++ b/x86/svm.c @@ -407,6 +407,7 @@ int run_svm_tests(int ac, char **av, struct svm_test *s= vm_tests) report_skip("%s (not supported)", svm_tests[i].name); continue; } + printf("SVM test: %s\n", svm_tests[i].name); if (svm_tests[i].v2 =3D=3D NULL) { if (svm_tests[i].on_vcpu) { if (cpu_count() <=3D svm_tests[i].on_vcpu) --=20 2.51.2.1041.gc1ab5b90ca-goog