From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 102534 invoked by alias); 28 Sep 2018 07:05:45 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Received: (qmail 102521 invoked by uid 89); 28 Sep 2018 07:05:44 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-7.2 required=5.0 tests=AWL,BAYES_00,FREEMAIL_FROM,GIT_PATCH_2,RCVD_IN_DNSWL_NONE,SPF_PASS autolearn=ham version=3.3.2 spammy=HX-Received:Fri, Hx-languages-length:819 X-HELO: mail-it1-f174.google.com Received: from mail-it1-f174.google.com (HELO mail-it1-f174.google.com) (209.85.166.174) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 28 Sep 2018 07:05:43 +0000 Received: by mail-it1-f174.google.com with SMTP id q70-v6so1443373itb.3 for ; Fri, 28 Sep 2018 00:05:42 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc; bh=n8QVYzJxVTex2TZnGdSdiKEgZkyYWcsjN9PG0GuXYJA=; b=OVUWXHqX/Wz5xHJ+FATJdkR8hh/wds2YtGus6nMdRZRPvLTo3uw/j5SV7mYXJY0nkn Iocp3qUc7hE7yNA4nU+8go/m4M9ZUgsGG+ZJPTW725rJNmNiJDxTcom5oHAQziWjJhiw Nh0sIEePTSedeXW+f4FvDpgH23Texqnfj+JqlOMu0X6Esqa3md37KHrZieavQFyNHNwq 8Z+XAUomhVo9BIdIgwSGQITFVALBudNCtZ4xIbq1H4/q1iZ/+0JhldezBiUbNwQJIZEW Ktgql3sbxfygiKseqWBzDrUOmNNlJbBAtUcENOJV8aLNGbIlEGSq3ncwxWk7oIyyNDzo b4TQ== MIME-Version: 1.0 Received: by 2002:a02:978e:0:0:0:0:0 with HTTP; Fri, 28 Sep 2018 00:05:40 -0700 (PDT) In-Reply-To: References: From: Uros Bizjak Date: Fri, 28 Sep 2018 07:13:00 -0000 Message-ID: Subject: Re: libgo patch committed: Update to 1.11 release To: Ian Taylor Cc: "gcc-patches@gcc.gnu.org" , gofrontend-dev@googlegroups.com Content-Type: text/plain; charset="UTF-8" X-SW-Source: 2018-09/txt/msg01706.txt.bz2 On Wed, Sep 26, 2018 at 9:57 AM, Uros Bizjak wrote: > I've committed a patch to update libgo to the 1.11 release. As usual > for these updates, the patch is too large to attach to this e-mail > message. I've attached some of the more relevant directories. This > update required some minor patches to the gotools directory and the Go > testsuite, also included here. Bootstrapped and ran Go testsuite on > x86_64-pc-linux-gnu. Committed to mainline. There is one new libgo failure on CentOS 5.11: --- FAIL: TestSplice (0.18s) --- FAIL: TestSplice/readerAtEOF (0.01s) splice_test.go:228: closed connection: got err = pipe2: function not implemented, handled = false, want handled = true FAIL FAIL: net as there is no pipe2 on old systems. Uros.