From patchwork Thu Jun 3 16:10:42 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Baruch Siach X-Patchwork-Id: 1487318 Return-Path: X-Original-To: incoming-buildroot@patchwork.ozlabs.org Delivered-To: patchwork-incoming-buildroot@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=busybox.net (client-ip=2605:bc80:3010::137; helo=smtp4.osuosl.org; envelope-from=buildroot-bounces@busybox.net; receiver=) Received: from smtp4.osuosl.org (smtp4.osuosl.org [IPv6:2605:bc80:3010::137]) (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 ozlabs.org (Postfix) with ESMTPS id 4FwrVb1Wnbz9sCD for ; Fri, 4 Jun 2021 02:11:18 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by smtp4.osuosl.org (Postfix) with ESMTP id D2EFE405A7; Thu, 3 Jun 2021 16:11:14 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from smtp4.osuosl.org ([127.0.0.1]) by localhost (smtp4.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 95UAxBt7BHRc; Thu, 3 Jun 2021 16:11:11 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by smtp4.osuosl.org (Postfix) with ESMTP id 74352405AA; Thu, 3 Jun 2021 16:11:10 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from smtp1.osuosl.org (smtp1.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id D248A1BF429 for ; Thu, 3 Jun 2021 16:11:08 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by smtp1.osuosl.org (Postfix) with ESMTP id BF1AC83E2C for ; Thu, 3 Jun 2021 16:11:08 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from smtp1.osuosl.org ([127.0.0.1]) by localhost (smtp1.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id xnU-LweA8lzY for ; Thu, 3 Jun 2021 16:11:03 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.8.0 Received: from mx.tkos.co.il (guitar.tcltek.co.il [192.115.133.116]) by smtp1.osuosl.org (Postfix) with ESMTPS id 8B34183E2B for ; Thu, 3 Jun 2021 16:11:03 +0000 (UTC) Received: from tarshish.tkos.co.il (unknown [10.0.8.2]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mx.tkos.co.il (Postfix) with ESMTPS id D65DC4400D8; Thu, 3 Jun 2021 19:10:56 +0300 (IDT) From: Baruch Siach To: buildroot@busybox.net Date: Thu, 3 Jun 2021 19:10:42 +0300 Message-Id: <6a855a1d0fd3bd8f4bd59d87e349ab52ea501eab.1622736642.git.baruch@tkos.co.il> X-Mailer: git-send-email 2.30.2 MIME-Version: 1.0 Subject: [Buildroot] [PATCH next] package/gnutls: disable tests X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.29 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Matt Weber Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" Tests can't build with NDEBUG is defined. Since commit 5a8c50fe05afa ("core: enable 'NDEBUG' unless BR2_ENABLE_RUNTIME_DEBUG is set") NDEBUG is defined on !BR2_ENABLE_RUNTIME_DEBUG. Just disable tests. Fixes: http://autobuild.buildroot.net/results/9ec31793484a69c14a66b7338d795089c07b9937/ http://autobuild.buildroot.net/results/6ef8f1534237f2df4cff0a0bc0364fe9a46a5343/ http://autobuild.buildroot.net/results/05ff156687138627f244ca3f6cb58f1ce7d127c4/ Cc: Matt Weber Signed-off-by: Baruch Siach --- package/gnutls/gnutls.mk | 1 + 1 file changed, 1 insertion(+) diff --git a/package/gnutls/gnutls.mk b/package/gnutls/gnutls.mk index 14855bcebc8f..6fc9ffad0b3f 100644 --- a/package/gnutls/gnutls.mk +++ b/package/gnutls/gnutls.mk @@ -23,6 +23,7 @@ GNUTLS_CONF_OPTS = \ --disable-guile \ --disable-libdane \ --disable-rpath \ + --disable-tests \ --enable-local-libopts \ --enable-openssl-compatibility \ --with-librt-prefix=$(STAGING_DIR) \