From patchwork Wed Mar 9 19:17:57 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ian Lance Taylor X-Patchwork-Id: 86151 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) by ozlabs.org (Postfix) with SMTP id 54D8FB6F7F for ; Thu, 10 Mar 2011 06:20:37 +1100 (EST) Received: (qmail 17047 invoked by alias); 9 Mar 2011 19:20:28 -0000 Received: (qmail 16962 invoked by uid 22791); 9 Mar 2011 19:20:26 -0000 X-SWARE-Spam-Status: No, hits=-2.7 required=5.0 tests=AWL, BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, SPF_HELO_PASS, T_RP_MATCHES_RCVD, T_TVD_MIME_NO_HEADERS X-Spam-Check-By: sourceware.org Received: from smtp-out.google.com (HELO smtp-out.google.com) (74.125.121.67) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Wed, 09 Mar 2011 19:20:21 +0000 Received: from kpbe11.cbf.corp.google.com (kpbe11.cbf.corp.google.com [172.25.105.75]) by smtp-out.google.com with ESMTP id p29JKIBD025624 for ; Wed, 9 Mar 2011 11:20:18 -0800 Received: from gwj15 (gwj15.prod.google.com [10.200.10.15]) by kpbe11.cbf.corp.google.com with ESMTP id p29JHBBD030423 (version=TLSv1/SSLv3 cipher=RC4-SHA bits=128 verify=NOT) for ; Wed, 9 Mar 2011 11:18:00 -0800 Received: by gwj15 with SMTP id 15so161022gwj.39 for ; Wed, 09 Mar 2011 11:18:00 -0800 (PST) Received: by 10.236.201.131 with SMTP id b3mr251811yho.312.1299698280261; Wed, 09 Mar 2011 11:18:00 -0800 (PST) Received: from coign.google.com (dhcp-172-22-123-197.mtv.corp.google.com [172.22.123.197]) by mx.google.com with ESMTPS id 68sm1506918yhl.19.2011.03.09.11.17.59 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 09 Mar 2011 11:18:00 -0800 (PST) From: Ian Lance Taylor To: gcc-patches@gcc.gnu.org, gofrontend-dev@googlegroups.com Cc: ro@CeBiTec.Uni-Bielefeld.DE Subject: libgo patch committed: Mention GCCGO_RUN_ALL_TESTS in README.gcc Date: Wed, 09 Mar 2011 11:17:57 -0800 Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.1 (gnu/linux) MIME-Version: 1.0 X-System-Of-Record: true X-IsSubscribed: yes Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org Rainer pointed out that the GCCGO_RUN_ALL_TESTS environment variable should really be documented. This patch adds a note to libgo/README.gcc. Committed to mainline. Ian diff -r 5d83cac5a1c5 libgo/README.gcc --- a/libgo/README.gcc Tue Mar 08 22:54:43 2011 -0800 +++ b/libgo/README.gcc Wed Mar 09 11:16:12 2011 -0800 @@ -1,3 +1,7 @@ The files in this directory are mirrored from the gofrontend project hosted at http://code.google.com/p/gofrontend. These files are the ones in the libgo subdirectory of that project. + +By default, the networking tests are not run. In order to run all the +libgo tests, you need to define the environment variable +GCCGO_RUN_ALL_TESTS to a non-empty string.