From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id C070C1581B9 for ; Wed, 01 Oct 2025 00:38:55 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id A66E9340836 for ; Wed, 01 Oct 2025 00:38:55 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 9D3431103CB; Wed, 01 Oct 2025 00:38:54 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 91CC91103CB for ; Wed, 01 Oct 2025 00:38:54 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 52EF3340836 for ; Wed, 01 Oct 2025 00:38:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BCE0839B8 for ; Wed, 01 Oct 2025 00:38:52 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1759277436.43ed23e5ea7be5c9ffaefc91f18b088da13e9e24.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/openssh/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/openssh/openssh-10.0_p2.ebuild X-VCS-Directories: net-misc/openssh/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 43ed23e5ea7be5c9ffaefc91f18b088da13e9e24 X-VCS-Branch: master Date: Wed, 01 Oct 2025 00:38:52 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 6d846f74-992b-464d-94ff-48b74423eba2 X-Archives-Hash: 476eb8b79943de40c8ead4d9b3c45aaf commit: 43ed23e5ea7be5c9ffaefc91f18b088da13e9e24 Author: Sam James gentoo org> AuthorDate: Wed Oct 1 00:08:23 2025 +0000 Commit: Sam James gentoo org> CommitDate: Wed Oct 1 00:10:36 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=43ed23e5 net-misc/openssh: wire up more tests Note that the 'tests' target does run them all, but in most cases, we don't use that because of the shell needed for the 'portage' user. So, wire up the following: * 'unit', added in e7429f2be8643e1100380a8a7389d85cc286c8fe upstream (2014); * 'file-tests', added in 159e987a54d92ccd73875e7581ffc64e8927a715 upstream (2019). It would be nice to perhaps wire up more of the interop tests w/ dropbear and twisted (IIRC) at some point. Signed-off-by: Sam James gentoo.org> net-misc/openssh/openssh-10.0_p2.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net-misc/openssh/openssh-10.0_p2.ebuild b/net-misc/openssh/openssh-10.0_p2.ebuild index 10b3c5856186..14b86cc3fcf3 100644 --- a/net-misc/openssh/openssh-10.0_p2.ebuild +++ b/net-misc/openssh/openssh-10.0_p2.ebuild @@ -299,7 +299,7 @@ src_test() { if [[ ${shell} == */nologin ]] || [[ ${shell} == */false ]] ; then ewarn "Running the full OpenSSH testsuite requires a usable shell for the 'portage'" ewarn "user, so we will run a subset only." - tests+=( interop-tests ) + tests+=( interop-tests file-tests unit ) else tests+=( tests ) fi