From nobody Sun Feb 8 16:31:10 2026 Received: from out-172.mta0.migadu.com (out-172.mta0.migadu.com [91.218.175.172]) (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 71D452F691F for ; Mon, 10 Nov 2025 23:27:04 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=91.218.175.172 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1762817226; cv=none; b=ORyQts9oJ26tm41yCnMszprgKYcFqOgOYPv1Ch8Fd5rcNh9g6PUI5OxRrjOhfnvaf82aUBbyNTotkmHQgXuSvBNK3tYBSMwJJDA4CiLbk2cUU6NtNDlg5s4Yxi4aa1dRoK1lEjYRYPGtAzBHZO4kudZBiN1ImWSBltXNtsGPUpU= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1762817226; c=relaxed/simple; bh=ogJdXeINqQWlpc3T1UEK6sCoWh8eJk5cHClB8hzYApw=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=s8w3PVQAj9ar19tfNlymxhbfVoAjNSX5LVt175YtkPhdNedcPT/X3mqZO2N/2axw6QLagrr0cDE2rgAr31h7nfUXv26V+DnYpr8tpX5TlsDz2g8+rKIlxJPkN5b5UjixiSUzmz/u9aX5dzHSGqwJTLDZlEzphv4SSKehhmjwj0c= 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=PUifzqSs; arc=none smtp.client-ip=91.218.175.172 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="PUifzqSs" 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=1762817222; 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=UZWKobXDfLkd7eERlrIkQnCB9bLEgjEGKzWLVchtxf0=; b=PUifzqSsCvaC+q98arBe8udyvqY/HJ7NptyD9RL/9QuYJ4VChad7VyBR61qB2+AfGt1RuP C0Z8H1iD+qohsuFjf2Wr76e1xkFvwv3/TdAhnsUyTPP4AxJIpfkqLDTBE6MGCrm2qI6uOD BE2NkUimswhxkXh02YSsGW5W1Ou0boc= 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 01/14] scripts: Always return '2' when skipping tests Date: Mon, 10 Nov 2025 23:26:29 +0000 Message-ID: <20251110232642.633672-2-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" runtime.bash always returns 2 (or 77 in one case) when a test is skipped. But two cases are missed and return 0. Fix them. Signed-off-by: Yosry Ahmed --- scripts/runtime.bash | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/runtime.bash b/scripts/runtime.bash index 6805e97f90c8f..0cbe2695948b8 100644 --- a/scripts/runtime.bash +++ b/scripts/runtime.bash @@ -103,13 +103,13 @@ function run() =20 if [ -z "$GEN_SE_HEADER" ] && find_word "pv-host" "$groups"; then print_result "SKIP" $testname "" "no gen-se-header available for p= v-host test" - return + return 2 fi =20 if [ -z "$only_group" ] && find_word nodefault "$groups" && skip_nodefault; then print_result "SKIP" $testname "" "test marked as manual run only" - return; + return 2 fi =20 if [ -n "$arch" ] && [ "$arch" !=3D "$ARCH" ]; then --=20 2.51.2.1041.gc1ab5b90ca-goog