From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 D01711396D0 for ; Sat, 2 Sep 2017 15:20:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 400391FC07A; Sat, 2 Sep 2017 15:20:43 +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 1BB451FC07A for ; Sat, 2 Sep 2017 15:20:43 +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 14D9F341673 for ; Sat, 2 Sep 2017 15:20:42 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7CA758B6C for ; Sat, 2 Sep 2017 15:20:40 +0000 (UTC) From: "Michael Palimaka" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Palimaka" Message-ID: <1504365629.00bd2f9524ff99b2d17f1cc79c9d5b678e1576f7.kensington@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-cluster/teleport/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-cluster/teleport/teleport-2.2.0.ebuild sys-cluster/teleport/teleport-2.2.1.ebuild sys-cluster/teleport/teleport-9999.ebuild X-VCS-Directories: sys-cluster/teleport/ X-VCS-Committer: kensington X-VCS-Committer-Name: Michael Palimaka X-VCS-Revision: 00bd2f9524ff99b2d17f1cc79c9d5b678e1576f7 X-VCS-Branch: master Date: Sat, 2 Sep 2017 15:20:40 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 25fcc273-1cbc-48a8-bfe2-e0db226ee9d5 X-Archives-Hash: f0a234317d952b1e439c65f757a786fa commit: 00bd2f9524ff99b2d17f1cc79c9d5b678e1576f7 Author: Graeme Lawes gmail com> AuthorDate: Sun Jul 2 13:48:26 2017 +0000 Commit: Michael Palimaka gentoo org> CommitDate: Sat Sep 2 15:20:29 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=00bd2f95 sys-cluster/teleport: fix src_test, restrict tests src_test needs the same GOPATH as src_compile to run. Some tests are currently failing, so add RESTRICT=test until upstream devs can fix tests. Bug: https://bugs.gentoo.org/show_bug.cgi?id=623430 sys-cluster/teleport/teleport-2.2.0.ebuild | 5 +++++ sys-cluster/teleport/teleport-2.2.1.ebuild | 5 +++++ sys-cluster/teleport/teleport-9999.ebuild | 4 ++++ 3 files changed, 14 insertions(+) diff --git a/sys-cluster/teleport/teleport-2.2.0.ebuild b/sys-cluster/teleport/teleport-2.2.0.ebuild index 3fafc3ed333..90fddb344c0 100644 --- a/sys-cluster/teleport/teleport-2.2.0.ebuild +++ b/sys-cluster/teleport/teleport-2.2.0.ebuild @@ -21,6 +21,7 @@ fi LICENSE="Apache-2.0" SLOT="0" IUSE="" +RESTRICT="test" DEPEND=" app-arch/zip @@ -51,3 +52,7 @@ src_install() { systemd_dounit "${FILESDIR}"/${PN}.service systemd_install_serviced "${FILESDIR}"/${PN}.service.conf ${PN}.service } + +src_test() { + GOPATH="${S}" emake -C src/${EGO_PN%/*} test +} diff --git a/sys-cluster/teleport/teleport-2.2.1.ebuild b/sys-cluster/teleport/teleport-2.2.1.ebuild index 3fafc3ed333..90fddb344c0 100644 --- a/sys-cluster/teleport/teleport-2.2.1.ebuild +++ b/sys-cluster/teleport/teleport-2.2.1.ebuild @@ -21,6 +21,7 @@ fi LICENSE="Apache-2.0" SLOT="0" IUSE="" +RESTRICT="test" DEPEND=" app-arch/zip @@ -51,3 +52,7 @@ src_install() { systemd_dounit "${FILESDIR}"/${PN}.service systemd_install_serviced "${FILESDIR}"/${PN}.service.conf ${PN}.service } + +src_test() { + GOPATH="${S}" emake -C src/${EGO_PN%/*} test +} diff --git a/sys-cluster/teleport/teleport-9999.ebuild b/sys-cluster/teleport/teleport-9999.ebuild index 3e870fac4bd..a16c3c13370 100644 --- a/sys-cluster/teleport/teleport-9999.ebuild +++ b/sys-cluster/teleport/teleport-9999.ebuild @@ -49,3 +49,7 @@ src_install() { systemd_dounit "${FILESDIR}"/${PN}.service systemd_install_serviced "${FILESDIR}"/${PN}.service.conf ${PN}.service } + +src_test() { + GOPATH="${S}" emake -C src/${EGO_PN%/*} test +}