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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id E26831582EF for ; Tue, 04 Mar 2025 21:13:48 +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 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id CC1AF34310F for ; Tue, 04 Mar 2025 21:13:48 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id B1F981102D0; Tue, 04 Mar 2025 21:13:47 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 A605F1102D0 for ; Tue, 04 Mar 2025 21:13:47 +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 379DE34313C for ; Tue, 04 Mar 2025 21:13:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9560312CA for ; Tue, 04 Mar 2025 21:13:45 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1741122390.9a6b525e7c406af396e1477a3e1e8be1e0c75bab.asturm@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: eclass/ X-VCS-Repository: proj/kde X-VCS-Files: eclass/ecm.eclass X-VCS-Directories: eclass/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 9a6b525e7c406af396e1477a3e1e8be1e0c75bab X-VCS-Branch: master Date: Tue, 04 Mar 2025 21:13:45 +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: bc34cb1d-e358-4b31-8a1e-6362ac2a8985 X-Archives-Hash: aaa4e54b3a3bd4458f4842d67c9bb2d6 commit: 9a6b525e7c406af396e1477a3e1e8be1e0c75bab Author: Andreas Sturmlechner gentoo org> AuthorDate: Tue Mar 4 16:36:31 2025 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Tue Mar 4 21:06:30 2025 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=9a6b525e ecm.eclass: Fix missing arguments handover to cmake_src_test This omission impressively goes back to initial kde overlay commit 8265e71f48675ee84f8c745734ee157cc74cea6a on 2008-08-04. Bug: https://bugs.gentoo.org/946863 Signed-off-by: Andreas Sturmlechner gentoo.org> eclass/ecm.eclass | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/eclass/ecm.eclass b/eclass/ecm.eclass index c9a2b7ef9c..525e868880 100644 --- a/eclass/ecm.eclass +++ b/eclass/ecm.eclass @@ -695,7 +695,7 @@ ecm_src_test() { fi # KDE_DEBUG stops crash handlers from launching and hanging the test phase - KDE_DEBUG=1 cmake_src_test + KDE_DEBUG=1 cmake_src_test "$@" } local -x QT_QPA_PLATFORM=offscreen @@ -707,9 +707,9 @@ ecm_src_test() { unset DBUS_SESSION_BUS_ADDRESS DBUS_SESSION_BUS_PID if [[ ${EAPI} == 8 ]] && [[ ${VIRTUALX_REQUIRED} = always || ${VIRTUALX_REQUIRED} = test ]]; then - virtx _test_runner + virtx _test_runner "$@" else - _test_runner + _test_runner "$@" fi if [[ -n "${DBUS_SESSION_BUS_PID}" ]] ; then