From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1094666-garchives=archives.gentoo.org@lists.gentoo.org>
Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80])
	(using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
	(No client certificate requested)
	by finch.gentoo.org (Postfix) with ESMTPS id D34EE138334
	for <garchives@archives.gentoo.org>; Wed,  5 Jun 2019 19:06:49 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id BEDFCE0848;
	Wed,  5 Jun 2019 19:06:45 +0000 (UTC)
Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183])
	(using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits))
	(No client certificate requested)
	by pigeon.gentoo.org (Postfix) with ESMTPS id A52F5E0848
	for <gentoo-commits@lists.gentoo.org>; Wed,  5 Jun 2019 19:06:45 +0000 (UTC)
Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52])
	(using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits))
	(No client certificate requested)
	by smtp.gentoo.org (Postfix) with ESMTPS id 95154345795
	for <gentoo-commits@lists.gentoo.org>; Wed,  5 Jun 2019 19:06:43 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id 4BC0F60B
	for <gentoo-commits@lists.gentoo.org>; Wed,  5 Jun 2019 19:06:40 +0000 (UTC)
From: "Andreas Sturmlechner" <asturm@gentoo.org>
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" <asturm@gentoo.org>
Message-ID: <1559757447.6a3c1ed0760e4ad6c9d268e3ad8c7b8cb1423009.asturm@gentoo>
Subject: [gentoo-commits] proj/kde:master commit in: kde-frameworks/sonnet/
X-VCS-Repository: proj/kde
X-VCS-Files: kde-frameworks/sonnet/sonnet-9999.ebuild
X-VCS-Directories: kde-frameworks/sonnet/
X-VCS-Committer: asturm
X-VCS-Committer-Name: Andreas Sturmlechner
X-VCS-Revision: 6a3c1ed0760e4ad6c9d268e3ad8c7b8cb1423009
X-VCS-Branch: master
Date: Wed,  5 Jun 2019 19:06:40 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply
X-Archives-Salt: dbcdc6d4-b0d5-4e7b-9d13-df61cd0e4bff
X-Archives-Hash: bba7d5543f984ac6dcf6e0b0927e5234

commit:     6a3c1ed0760e4ad6c9d268e3ad8c7b8cb1423009
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Thu May 16 10:53:17 2019 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Wed Jun  5 17:57:27 2019 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=6a3c1ed0

kde-frameworks/sonnet: Disable broken tests

settingsLang is apparently unaffected by LANG=C but getting its value
from somewhere else.

Bug: https://bugs.gentoo.org/680032
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11

 kde-frameworks/sonnet/sonnet-9999.ebuild | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/kde-frameworks/sonnet/sonnet-9999.ebuild b/kde-frameworks/sonnet/sonnet-9999.ebuild
index d5c6c057b0..551656e8fb 100644
--- a/kde-frameworks/sonnet/sonnet-9999.ebuild
+++ b/kde-frameworks/sonnet/sonnet-9999.ebuild
@@ -30,3 +30,12 @@ src_configure() {
 
 	kde5_src_configure
 }
+
+src_test() {
+	# bugs: 680032
+	local myctestargs=(
+		-E "(sonnet-test_settings|sonnet-test_highlighter)"
+	)
+
+	kde5_src_test
+}