From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:33110) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hlffp-0005wX-II for guix-patches@gnu.org; Thu, 11 Jul 2019 16:28:14 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hlffo-0006By-0Y for guix-patches@gnu.org; Thu, 11 Jul 2019 16:28:13 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:58186) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hlffn-0006BE-R7 for guix-patches@gnu.org; Thu, 11 Jul 2019 16:28:11 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hlffn-00070X-Ju for guix-patches@gnu.org; Thu, 11 Jul 2019 16:28:11 -0400 Subject: [bug#36605] [PATCH 1/6] gnu: kcoreaddons: Enable test-suite. Resent-Message-ID: From: Hartmut Goebel Date: Thu, 11 Jul 2019 22:26:35 +0200 Message-Id: <20190711202644.32014-27-h.goebel@crazy-compilers.com> In-Reply-To: <20190711202644.32014-1-h.goebel@crazy-compilers.com> References: <58494E16.9010909@crazy-compilers.com> <20190711202644.32014-1-h.goebel@crazy-compilers.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 36605@debbugs.gnu.org Enable running the tests and blacklist the one failing test. * gnu/package/kde-frameworks.scm(kcoreaddons)[arguments] <#:tests?>: Remove. <#:phases>: Add phase 'blacklist-failing-test. --- gnu/packages/kde-frameworks.scm | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm index 5ab97c0b0..35e10015e 100644 --- a/gnu/packages/kde-frameworks.scm +++ b/gnu/packages/kde-frameworks.scm @@ -566,9 +566,16 @@ propagate their changes to their respective configuration files.") (inputs `(("qtbase" ,qtbase))) (arguments - `(#:tests? #f ; FIXME: Test failure caused by stout/stderr being interleaved. - #:phases + `(#:phases (modify-phases %standard-phases + (add-before 'check 'blacklist-failing-test + (lambda _ + ;; Blacklist a failing test-function. FIXME: Make it pass. + ;; Test failure caused by stout/stderr being interleaved. + (with-output-to-file "autotests/BLACKLIST" + (lambda _ + (display "[test_channels]\n*\n"))) + #t)) (add-before 'check 'check-setup (lambda _ (setenv "HOME" (getcwd)) -- 2.13.7