From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:35014) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ePARy-0005ZM-Dx for guix-patches@gnu.org; Wed, 13 Dec 2017 12:04:10 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ePARu-0004uW-JY for guix-patches@gnu.org; Wed, 13 Dec 2017 12:04:06 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:52031) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ePARu-0004uM-GB for guix-patches@gnu.org; Wed, 13 Dec 2017 12:04:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1ePARu-0006dR-55 for guix-patches@gnu.org; Wed, 13 Dec 2017 12:04:02 -0500 Subject: [bug#29693] [PATCH 1/1] gnu: kdelibs4support: Blacklist a recently failing test-function. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:34840) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ePARJ-00058x-Jc for guix-patches@gnu.org; Wed, 13 Dec 2017 12:03:26 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ePARH-0004ON-0h for guix-patches@gnu.org; Wed, 13 Dec 2017 12:03:25 -0500 Received: from mail-out.m-online.net ([212.18.0.10]:37933) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1ePARG-0004LW-QO for guix-patches@gnu.org; Wed, 13 Dec 2017 12:03:22 -0500 Received: from frontend01.mail.m-online.net (unknown [192.168.8.182]) by mail-out.m-online.net (Postfix) with ESMTP id 3yxjgp2M9mz1qtNZ for ; Wed, 13 Dec 2017 18:03:18 +0100 (CET) Received: from localhost (dynscan1.mnet-online.de [192.168.6.70]) by mail.m-online.net (Postfix) with ESMTP id 3yxjgp0rw2z1qqkd for ; Wed, 13 Dec 2017 18:03:18 +0100 (CET) Received: from mail.mnet-online.de ([192.168.8.182]) by localhost (dynscan1.mail.m-online.net [192.168.6.70]) (amavisd-new, port 10024) with ESMTP id oolfpe5l-IVW for ; Wed, 13 Dec 2017 18:03:17 +0100 (CET) Received: from hermia.goebel-consult.de (ppp-93-104-71-86.dynamic.mnet-online.de [93.104.71.86]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.mnet-online.de (Postfix) with ESMTPS for ; Wed, 13 Dec 2017 18:03:17 +0100 (CET) Received: from lenashee.goebel-consult.de (lenashee.goebel-consult.de [192.168.110.2]) by hermia.goebel-consult.de (Postfix) with ESMTP id 117466064D for ; Wed, 13 Dec 2017 18:03:17 +0100 (CET) From: Hartmut Goebel Date: Wed, 13 Dec 2017 18:03:16 +0100 Message-Id: <20171213170316.22988-1-h.goebel@crazy-compilers.com> 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: 29693@debbugs.gnu.org --- gnu/packages/kde-frameworks.scm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm index 72dff868c..ef2a7cb07 100644 --- a/gnu/packages/kde-frameworks.scm +++ b/gnu/packages/kde-frameworks.scm @@ -3359,6 +3359,10 @@ workspace.") (mkdir-p ".kde-unit-test/xdg/config") (with-output-to-file ".kde-unit-test/xdg/config/foorc" (lambda () #t)) ;; simply touch the file + ;; Blacklist a test-function (failing at build.kde.org, too). + (with-output-to-file "autotests/BLACKLIST" + (lambda _ + (display "[testSmb]\n*\n"))) ;; kuniqueapptest hangs. TODO: Make this test pass. (zero? (system* "dbus-launch" "ctest" "." "-E" "kstandarddirstest|kuniqueapptest"))))))) -- 2.13.6