From nobody Wed Oct 8 00:27:07 2025 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 5BFAB2D5427; Thu, 3 Jul 2025 23:17:49 +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=1751584670; cv=none; b=bq0WnRgVZg6mXECxsup9Ptc/n0w7ZL6DEhJj9Ml9kPmv9zj8bEbNyYtfUvp7yyPJKTQWv02ftEcbVsVq86zRRvw3ioyd/8cg0NTK0ixsarvD48jwxIsPkGzR7m8cIj/BZ23SGDOHGjStL5+EdGwJwmXRpBEErsWInx+eLhEKh+M= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1751584670; c=relaxed/simple; bh=uhsiemPpx0IFgieoxgJV8+bHgab638fpTiXPrK5ZQug=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=Ihg4HzCFzbrLcFdPSsWVqxFXJnEpRorTtQvKPKFl8oOaaWXy2sbJtRtYgN8SA5tWzP2HzND0Jp6Rkdjj3AaQYgK7mHwaEaa4gqQmD28a5k5PURywiTiXDs1F6OpBBK1WShvkGTk8LJzMGPqoXSYwkiemv4zGtWnPUM4WvbPMDRI= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=ilVfLGWJ; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="ilVfLGWJ" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 9BFFDC4CEE3; Thu, 3 Jul 2025 23:17:49 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1751584669; bh=uhsiemPpx0IFgieoxgJV8+bHgab638fpTiXPrK5ZQug=; h=From:To:Cc:Subject:Date:From; b=ilVfLGWJzxkpd4YF29J3kgwJOetoi/cZ0RVlxrcxojgyzf/Fqwwo1n/LbHC3yqVDt ONVzIY3WVg55yq+Eod9bbI+ihBORKcEhRGs9gETcito/CdfUqW2OcvUtj+D7Ybw71L T3GkmrYwlAqGsaZe81racJ3wQ8PM2+uWsY+yTCa4= From: Shuah Khan To: shuah@kernel.org Cc: Shuah Khan , linux-kselftest@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH] selftests: print installation complete message Date: Thu, 3 Jul 2025 17:17:46 -0600 Message-ID: <20250703231747.37544-1-skhan@linuxfoundation.org> X-Mailer: git-send-email 2.47.2 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 Content-Type: text/plain; charset="utf-8" Add installation complete message to Makefile install logic. Signed-off-by: Shuah Khan --- tools/testing/selftests/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/testing/selftests/Makefile b/tools/testing/selftests/Mak= efile index 9dae84a74e7f..b95de208265a 100644 --- a/tools/testing/selftests/Makefile +++ b/tools/testing/selftests/Makefile @@ -300,6 +300,7 @@ ifdef INSTALL_PATH else \ printf "Unable to get version from git describe\n"; \ fi + @echo "**Kselftest Installation is complete: $(INSTALL_PATH)**" else $(error Error: set INSTALL_PATH to use install) endif --=20 2.47.2