From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1011752-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 2E1621382C5
	for <garchives@archives.gentoo.org>; Thu, 22 Mar 2018 22:23:54 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id 2201AE0916;
	Thu, 22 Mar 2018 22:23:52 +0000 (UTC)
Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4])
	(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 EEF3CE0916
	for <gentoo-commits@lists.gentoo.org>; Thu, 22 Mar 2018 22:23:51 +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 4FDC6335C49
	for <gentoo-commits@lists.gentoo.org>; Thu, 22 Mar 2018 22:23:50 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id 1471D24C
	for <gentoo-commits@lists.gentoo.org>; Thu, 22 Mar 2018 22:23:48 +0000 (UTC)
From: "Sergei Trofimovich" <slyfox@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, "Sergei Trofimovich" <slyfox@gentoo.org>
Message-ID: <1521757423.34f84bf5487200fb65d772469e0f1cd20c14c9c1.slyfox@gentoo>
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-libs/glibc/
X-VCS-Repository: repo/gentoo
X-VCS-Files: sys-libs/glibc/glibc-2.26-r6.ebuild sys-libs/glibc/glibc-2.27-r1.ebuild sys-libs/glibc/glibc-9999.ebuild
X-VCS-Directories: sys-libs/glibc/
X-VCS-Committer: slyfox
X-VCS-Committer-Name: Sergei Trofimovich
X-VCS-Revision: 34f84bf5487200fb65d772469e0f1cd20c14c9c1
X-VCS-Branch: master
Date: Thu, 22 Mar 2018 22:23:48 +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-Archives-Salt: f285fb91-7cc8-4acf-ac7e-c2efe149430a
X-Archives-Hash: 0e15fd43a4efe46f9c0f567954c60c75

commit:     34f84bf5487200fb65d772469e0f1cd20c14c9c1
Author:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 22 22:23:02 2018 +0000
Commit:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Thu Mar 22 22:23:43 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=34f84bf5

sys-libs/glibc: skip real tests for USE=headers-only flavour

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 sys-libs/glibc/glibc-2.26-r6.ebuild | 3 +++
 sys-libs/glibc/glibc-2.27-r1.ebuild | 4 ++++
 sys-libs/glibc/glibc-9999.ebuild    | 3 +++
 3 files changed, 10 insertions(+)

diff --git a/sys-libs/glibc/glibc-2.26-r6.ebuild b/sys-libs/glibc/glibc-2.26-r6.ebuild
index e04e8dd3621..2729cf8d6eb 100644
--- a/sys-libs/glibc/glibc-2.26-r6.ebuild
+++ b/sys-libs/glibc/glibc-2.26-r6.ebuild
@@ -580,6 +580,9 @@ do_src_test() {
 }
 
 src_test() {
+	if just_headers ; then
+		return
+	fi
 	# Give tests more time to complete.
 	export TIMEOUTFACTOR=5
 

diff --git a/sys-libs/glibc/glibc-2.27-r1.ebuild b/sys-libs/glibc/glibc-2.27-r1.ebuild
index e60cc38856b..aa1b179ab4b 100644
--- a/sys-libs/glibc/glibc-2.27-r1.ebuild
+++ b/sys-libs/glibc/glibc-2.27-r1.ebuild
@@ -1070,6 +1070,10 @@ do_src_test() {
 }
 
 src_test() {
+	if just_headers ; then
+		return
+	fi
+
 	# Give tests more time to complete.
 	export TIMEOUTFACTOR=5
 

diff --git a/sys-libs/glibc/glibc-9999.ebuild b/sys-libs/glibc/glibc-9999.ebuild
index 9b520f69131..a978eaf1970 100644
--- a/sys-libs/glibc/glibc-9999.ebuild
+++ b/sys-libs/glibc/glibc-9999.ebuild
@@ -1070,6 +1070,9 @@ do_src_test() {
 }
 
 src_test() {
+	if just_headers ; then
+		return
+	fi
 	# Give tests more time to complete.
 	export TIMEOUTFACTOR=5