public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug testsuite/61061] New: FAIL: g++.dg/inherit/covariant7.C
@ 2014-05-05  7:57 schwab@linux-m68k.org
  2014-07-01  3:06 ` [Bug testsuite/61061] " timshen at gcc dot gnu.org
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: schwab@linux-m68k.org @ 2014-05-05  7:57 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=61061

            Bug ID: 61061
           Summary: FAIL: g++.dg/inherit/covariant7.C
           Product: gcc
           Version: 4.10.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: testsuite
          Assignee: unassigned at gcc dot gnu.org
          Reporter: schwab@linux-m68k.org
                CC: nathan at gcc dot gnu.org
            Target: ia64-*-*

Created attachment 32735
  --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=32735&action=edit
covariant7.C.002t.class

FAIL: g++.dg/inherit/covariant7.C -std=gnu++98  scan-tree-dump class "48   
.*c6::_ZTcv0_n32_v0_n24_NV2c62f2Ev"
FAIL: g++.dg/inherit/covariant7.C -std=gnu++98  scan-tree-dump class "56   
.*c6::f2"
FAIL: g++.dg/inherit/covariant7.C -std=gnu++98  scan-tree-dump class "168  
.*c6::_ZTv0_n32_NV2c62f2Ev"
FAIL: g++.dg/inherit/covariant7.C -std=gnu++11  scan-tree-dump class "48   
.*c6::_ZTcv0_n32_v0_n24_NV2c62f2Ev"
FAIL: g++.dg/inherit/covariant7.C -std=gnu++11  scan-tree-dump class "56   
.*c6::f2"
FAIL: g++.dg/inherit/covariant7.C -std=gnu++11  scan-tree-dump class "168  
.*c6::_ZTv0_n32_NV2c62f2Ev"
FAIL: g++.dg/inherit/covariant7.C -std=gnu++1y  scan-tree-dump class "48   
.*c6::_ZTcv0_n32_v0_n24_NV2c62f2Ev"
FAIL: g++.dg/inherit/covariant7.C -std=gnu++1y  scan-tree-dump class "56   
.*c6::f2"
FAIL: g++.dg/inherit/covariant7.C -std=gnu++1y  scan-tree-dump class "168  
.*c6::_ZTv0_n32_NV2c62f2Ev"


^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Bug testsuite/61061] FAIL: g++.dg/inherit/covariant7.C
  2014-05-05  7:57 [Bug testsuite/61061] New: FAIL: g++.dg/inherit/covariant7.C schwab@linux-m68k.org
@ 2014-07-01  3:06 ` timshen at gcc dot gnu.org
  2014-07-01  3:15 ` timshen at gcc dot gnu.org
  2021-09-02  9:48 ` [Bug c++/61061] " pinskia at gcc dot gnu.org
  2 siblings, 0 replies; 4+ messages in thread
From: timshen at gcc dot gnu.org @ 2014-07-01  3:06 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61061

--- Comment #1 from Tim Shen <timshen at gcc dot gnu.org> ---
Author: timshen
Date: Tue Jul  1 03:05:45 2014
New Revision: 212185

URL: https://gcc.gnu.org/viewcvs?rev=212185&root=gcc&view=rev
Log:
    PR libstdc++/61061
    PR libstdc++/61582
    * include/bits/regex_automaton.h (_NFA<>::_M_insert_state): Add
    a NFA state limit. If it's exceeded, regex_constants::error_space
    will be throwed.
    * include/bits/regex_automaton.tcc (_StateSeq<>::_M_clone): Use
    map (which is sparse) instead of vector. This reduce n times clones'
    cost from O(n^2) to O(n).
    * include/std/regex: Add map dependency.
    * testsuite/28_regex/algorithms/regex_match/ecma/char/61601.cc: New
    testcase.


Added:
   
trunk/libstdc++-v3/testsuite/28_regex/algorithms/regex_match/ecma/char/61601.cc
Modified:
    trunk/libstdc++-v3/ChangeLog
    trunk/libstdc++-v3/include/bits/regex_automaton.h
    trunk/libstdc++-v3/include/bits/regex_automaton.tcc
    trunk/libstdc++-v3/include/std/regex


^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Bug testsuite/61061] FAIL: g++.dg/inherit/covariant7.C
  2014-05-05  7:57 [Bug testsuite/61061] New: FAIL: g++.dg/inherit/covariant7.C schwab@linux-m68k.org
  2014-07-01  3:06 ` [Bug testsuite/61061] " timshen at gcc dot gnu.org
@ 2014-07-01  3:15 ` timshen at gcc dot gnu.org
  2021-09-02  9:48 ` [Bug c++/61061] " pinskia at gcc dot gnu.org
  2 siblings, 0 replies; 4+ messages in thread
From: timshen at gcc dot gnu.org @ 2014-07-01  3:15 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61061

Tim Shen <timshen at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |timshen at gcc dot gnu.org

--- Comment #2 from Tim Shen <timshen at gcc dot gnu.org> ---
(In reply to Tim Shen from comment #1)
> Author: timshen
> Date: Tue Jul  1 03:05:45 2014
> New Revision: 212185
> 
> URL: https://gcc.gnu.org/viewcvs?rev=212185&root=gcc&view=rev
> Log:
> 	PR libstdc++/61061
> 	PR libstdc++/61582
> 	* include/bits/regex_automaton.h (_NFA<>::_M_insert_state): Add
> 	a NFA state limit. If it's exceeded, regex_constants::error_space
> 	will be throwed.
> 	* include/bits/regex_automaton.tcc (_StateSeq<>::_M_clone): Use
> 	map (which is sparse) instead of vector. This reduce n times clones'
> 	cost from O(n^2) to O(n).
> 	* include/std/regex: Add map dependency.
> 	* testsuite/28_regex/algorithms/regex_match/ecma/char/61601.cc: New
> 	testcase.
> 
> 
> Added:
>    
> trunk/libstdc++-v3/testsuite/28_regex/algorithms/regex_match/ecma/char/61601.
> cc
> Modified:
>     trunk/libstdc++-v3/ChangeLog
>     trunk/libstdc++-v3/include/bits/regex_automaton.h
>     trunk/libstdc++-v3/include/bits/regex_automaton.tcc
>     trunk/libstdc++-v3/include/std/regex

Oops. Sorry for wrong PR id.
>From gcc-bugs-return-455418-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Jul 01 03:19:56 2014
Return-Path: <gcc-bugs-return-455418-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 31060 invoked by alias); 1 Jul 2014 03:19:55 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 30990 invoked by uid 48); 1 Jul 2014 03:19:50 -0000
From: "timshen at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libstdc++/61601] C++11 regex resource exhaustion
Date: Tue, 01 Jul 2014 03:19:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libstdc++
X-Bugzilla-Version: 4.9.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: timshen at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-61601-4-Wjv4Vpg0HJ@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-61601-4@http.gcc.gnu.org/bugzilla/>
References: <bug-61601-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: 7bit
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2014-07/txt/msg00009.txt.bz2
Content-length: 1139

https://gcc.gnu.org/bugzilla/show_bug.cgi?ida601

--- Comment #3 from Tim Shen <timshen at gcc dot gnu.org> ---
Author: timshen
Date: Tue Jul  1 03:05:45 2014
New Revision: 212185

URL: https://gcc.gnu.org/viewcvs?rev!2185&root=gcc&view=rev
Log:
    PR libstdc++/61061
    PR libstdc++/61582
    * include/bits/regex_automaton.h (_NFA<>::_M_insert_state): Add
    a NFA state limit. If it's exceeded, regex_constants::error_space
    will be throwed.
    * include/bits/regex_automaton.tcc (_StateSeq<>::_M_clone): Use
    map (which is sparse) instead of vector. This reduce n times clones'
    cost from O(n^2) to O(n).
    * include/std/regex: Add map dependency.
    * testsuite/28_regex/algorithms/regex_match/ecma/char/61601.cc: New
    testcase.


Added:

trunk/libstdc++-v3/testsuite/28_regex/algorithms/regex_match/ecma/char/61601.cc
Modified:
    trunk/libstdc++-v3/ChangeLog
    trunk/libstdc++-v3/include/bits/regex_automaton.h
    trunk/libstdc++-v3/include/bits/regex_automaton.tcc
    trunk/libstdc++-v3/include/std/regex


This is copied by hand, because PR 61601 is mistyped to 61601. Now it's fixed
in changelog.


^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Bug c++/61061] FAIL: g++.dg/inherit/covariant7.C
  2014-05-05  7:57 [Bug testsuite/61061] New: FAIL: g++.dg/inherit/covariant7.C schwab@linux-m68k.org
  2014-07-01  3:06 ` [Bug testsuite/61061] " timshen at gcc dot gnu.org
  2014-07-01  3:15 ` timshen at gcc dot gnu.org
@ 2021-09-02  9:48 ` pinskia at gcc dot gnu.org
  2 siblings, 0 replies; 4+ messages in thread
From: pinskia at gcc dot gnu.org @ 2021-09-02  9:48 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61061

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |diagnostic
             Status|UNCONFIRMED                 |NEW
          Component|testsuite                   |c++
     Ever confirmed|0                           |1
   Last reconfirmed|                            |2021-09-02

--- Comment #3 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
48    #'fdesc_expr' not supported by dump_expr#<expression error>

Confirmed, still a bug, FDESC_EXPR is not handled by dump_expr still.

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2021-09-02  9:48 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-05-05  7:57 [Bug testsuite/61061] New: FAIL: g++.dg/inherit/covariant7.C schwab@linux-m68k.org
2014-07-01  3:06 ` [Bug testsuite/61061] " timshen at gcc dot gnu.org
2014-07-01  3:15 ` timshen at gcc dot gnu.org
2021-09-02  9:48 ` [Bug c++/61061] " pinskia at gcc dot gnu.org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).