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 CEB3E138334 for ; Sun, 23 Dec 2018 14:23:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A02F1E095D; Sun, 23 Dec 2018 14:23:57 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 5FD84E095D for ; Sun, 23 Dec 2018 14:23:57 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 3FAFA335C36 for ; Sun, 23 Dec 2018 14:23:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D82D54E3 for ; Sun, 23 Dec 2018 14:23:51 +0000 (UTC) From: "Sergei Trofimovich" 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" Message-ID: <1545575026.d913d22dc3c9b4fb2f13461be4fd26c76fbc7a76.slyfox@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/crystal/files/, dev-lang/crystal/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lang/crystal/crystal-0.27.0.ebuild dev-lang/crystal/files/crystal-0.27.0-gentoo-tests-long-unix-2.patch dev-lang/crystal/files/crystal-0.27.0-tcp-server-test.patch X-VCS-Directories: dev-lang/crystal/ dev-lang/crystal/files/ X-VCS-Committer: slyfox X-VCS-Committer-Name: Sergei Trofimovich X-VCS-Revision: d913d22dc3c9b4fb2f13461be4fd26c76fbc7a76 X-VCS-Branch: master Date: Sun, 23 Dec 2018 14:23:51 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: bc313b5e-1336-4614-8a46-3f23e49b3a68 X-Archives-Hash: 8bae3c0111fbaf93294aef6e1a116daa commit: d913d22dc3c9b4fb2f13461be4fd26c76fbc7a76 Author: Sergei Trofimovich gentoo org> AuthorDate: Sun Dec 23 14:23:27 2018 +0000 Commit: Sergei Trofimovich gentoo org> CommitDate: Sun Dec 23 14:23:46 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d913d22d dev-lang/crystal: duisable more unix socket tests Package-Manager: Portage-2.3.52, Repoman-2.3.12 Signed-off-by: Sergei Trofimovich gentoo.org> dev-lang/crystal/crystal-0.27.0.ebuild | 2 ++ .../files/crystal-0.27.0-gentoo-tests-long-unix-2.patch | 13 +++++++++++++ dev-lang/crystal/files/crystal-0.27.0-tcp-server-test.patch | 12 ++++++++++++ 3 files changed, 27 insertions(+) diff --git a/dev-lang/crystal/crystal-0.27.0.ebuild b/dev-lang/crystal/crystal-0.27.0.ebuild index 763582835a2..cb040059d96 100644 --- a/dev-lang/crystal/crystal-0.27.0.ebuild +++ b/dev-lang/crystal/crystal-0.27.0.ebuild @@ -47,6 +47,8 @@ PATCHES=( "${FILESDIR}"/${PN}-0.27.0-max-age-0-test.patch "${FILESDIR}"/${PN}-0.27.0-gentoo-tests-network-sandbox.patch "${FILESDIR}"/${PN}-0.27.0-gentoo-tests-long-unix.patch + "${FILESDIR}"/${PN}-0.27.0-gentoo-tests-long-unix-2.patch + "${FILESDIR}"/${PN}-0.27.0-tcp-server-test.patch ) src_prepare() { diff --git a/dev-lang/crystal/files/crystal-0.27.0-gentoo-tests-long-unix-2.patch b/dev-lang/crystal/files/crystal-0.27.0-gentoo-tests-long-unix-2.patch new file mode 100644 index 00000000000..61cec14afcb --- /dev/null +++ b/dev-lang/crystal/files/crystal-0.27.0-gentoo-tests-long-unix-2.patch @@ -0,0 +1,13 @@ +--- a/spec/std/socket/unix_socket_spec.cr ++++ b/spec/std/socket/unix_socket_spec.cr +@@ -37,7 +37,9 @@ describe UNIXSocket do + end + end + +- it "sync flag after accept" do ++ # On large non-standard temp paths the test fails as: ++ # Path size exceeds the maximum size of 107 bytes ++ pending "sync flag after accept" do + with_tempfile("unix_socket-accept.sock") do |path| + UNIXServer.open(path) do |server| + UNIXSocket.open(path) do |client| diff --git a/dev-lang/crystal/files/crystal-0.27.0-tcp-server-test.patch b/dev-lang/crystal/files/crystal-0.27.0-tcp-server-test.patch new file mode 100644 index 00000000000..8f61c8aeef4 --- /dev/null +++ b/dev-lang/crystal/files/crystal-0.27.0-tcp-server-test.patch @@ -0,0 +1,12 @@ +--- a/spec/std/http/server/server_spec.cr ++++ b/spec/std/http/server/server_spec.cr +@@ -524,7 +524,8 @@ module HTTP + end + + describe "#close" do +- it "closes gracefully" do ++ # fails under gentoo's sandbox ++ pending "closes gracefully" do + server = Server.new do |context| + context.response.flush + context.response.puts "foo"