From patchwork Fri Mar 14 21:26:24 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Fran=C3=A7ois_Dumont?= X-Patchwork-Id: 330510 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]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 028A22C00B7 for ; Sat, 15 Mar 2014 08:28:16 +1100 (EST) DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender :message-id:date:from:mime-version:to:subject:content-type; q= dns; s=default; b=Ry99zjdZ6SbP0j391k1EXe68MFwFGj40sUWof5yj244N4Y LGgHnDDX/WF4Q1ZX3fg7T5Yh7cPjtFCaaufDoBbLwbKYemz8G/fapPNNcMjzA/Vi wwBldThRPEpipQir8vYlJuCjs7sqPvTqwDFQb42yKc9EquGeoEqM0zXYUEP9E= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender :message-id:date:from:mime-version:to:subject:content-type; s= default; bh=q68//qpg3NAw27by4X7IQwVFq/M=; b=vtQZL1BLO3ZIn72RZMg0 MkQD/OpR4lrLEwYyR7y4dBYmctXBSQnhKQhVqJwRYhWQjmRz112lmYOUJx3+Y4Vp YKizikrtnw+SYoUIIh48WW+tg/CDJuJtBRqQgVRAHa8xaXjy0kY0fsmU4BWre4k3 2RWHwrDy83XCZzsqrtiwj/c= Received: (qmail 11155 invoked by alias); 14 Mar 2014 21:27:59 -0000 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 Received: (qmail 11131 invoked by uid 89); 14 Mar 2014 21:27:58 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.6 required=5.0 tests=AWL, BAYES_00, FREEMAIL_FROM, RCVD_IN_DNSWL_LOW, SPF_PASS autolearn=ham version=3.3.2 X-Spam-User: qpsmtpd, 2 recipients X-HELO: mail-wi0-f174.google.com Received: from mail-wi0-f174.google.com (HELO mail-wi0-f174.google.com) (209.85.212.174) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-SHA encrypted) ESMTPS; Fri, 14 Mar 2014 21:27:57 +0000 Received: by mail-wi0-f174.google.com with SMTP id d1so98074wiv.7 for ; Fri, 14 Mar 2014 14:27:54 -0700 (PDT) X-Received: by 10.180.75.202 with SMTP id e10mr107673wiw.50.1394832474305; Fri, 14 Mar 2014 14:27:54 -0700 (PDT) Received: from localhost.localdomain (arf62-1-82-237-250-248.fbx.proxad.net. [82.237.250.248]) by mx.google.com with ESMTPSA id em1sm651253wid.5.2014.03.14.14.27.51 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Fri, 14 Mar 2014 14:27:52 -0700 (PDT) Message-ID: <53237400.9080206@gmail.com> Date: Fri, 14 Mar 2014 22:26:24 +0100 From: =?ISO-8859-1?Q?Fran=E7ois_Dumont?= User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:15.0) Gecko/20120829 Thunderbird/15.0 MIME-Version: 1.0 To: "libstdc++@gcc.gnu.org" , gcc-patches Subject: Missing experimental patch bit Hi I just realized that when I committed this: 2014-01-20 François Dumont * scripts/create_testsuite_files: Add testsuite/experimental in the list of folders to search for tests. * include/experimental/string_view (basic_string_view<>::operator[]): Comment _GLIBCXX_DEBUG_ASSERT, incompatible with constexpr qualifier. (basic_string_view<>::front()): Likewise. (basic_string_view<>::back()): Likewise. * testsuite/experimental/string_view/element_access/wchar_t/2.cc: Merge dg-options directives into one. * testsuite/experimental/string_view/element_access/char/2.cc: Likewise. Remove invalid experimental namespace scope on string_view_type. I forgot to commit the create_testsuite_files script. Is it still ok to do so now ? By the way is there an info about when stage 1 is going to restart ? François Index: scripts/create_testsuite_files =================================================================== --- scripts/create_testsuite_files (revision 208578) +++ scripts/create_testsuite_files (working copy) @@ -32,7 +32,7 @@ # This is the ugly version of "everything but the current directory". It's # what has to happen when find(1) doesn't support -mindepth, or -xtype. dlist=`echo [0-9][0-9]*` -dlist="$dlist abi backward ext performance tr1 tr2 decimal" +dlist="$dlist abi backward ext performance tr1 tr2 decimal experimental" find $dlist "(" -type f -o -type l ")" -name "*.cc" -print > $tmp.01 find $dlist "(" -type f -o -type l ")" -name "*.c" -print > $tmp.02 cat $tmp.01 $tmp.02 | sort > $tmp.1