public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug libstdc++/67362] std::regex("((.)", std::regex_constants::basic) throws
  2015-08-26 17:44 [Bug libstdc++/67362] New: std::regex("((.)", std::regex_constants::basic) throws redi at gcc dot gnu.org
@ 2015-08-26 17:44 ` redi at gcc dot gnu.org
  2015-08-28  2:36 ` timshen at gcc dot gnu.org
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: redi at gcc dot gnu.org @ 2015-08-26 17:44 UTC (permalink / raw)
  To: gcc-bugs

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

Jonathan Wakely <redi at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |ASSIGNED
   Last reconfirmed|                            |2015-08-26
     Ever confirmed|0                           |1


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

* [Bug libstdc++/67362] New: std::regex("((.)", std::regex_constants::basic) throws
@ 2015-08-26 17:44 redi at gcc dot gnu.org
  2015-08-26 17:44 ` [Bug libstdc++/67362] " redi at gcc dot gnu.org
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: redi at gcc dot gnu.org @ 2015-08-26 17:44 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 67362
           Summary: std::regex("((.)", std::regex_constants::basic) throws
           Product: gcc
           Version: 4.9.4
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: libstdc++
          Assignee: timshen at gcc dot gnu.org
          Reporter: redi at gcc dot gnu.org
  Target Milestone: ---

#include <regex>
#include <iostream>

int main()
{
  std::regex re("((.)", std::regex_constants::basic);
}


terminate called after throwing an instance of 'std::regex_error'
  what():  regex_error
Aborted (core dumped)


For a POSIX BRE neither '(' nor ')' should be special, so this should not fail.


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

* [Bug libstdc++/67362] std::regex("((.)", std::regex_constants::basic) throws
  2015-08-26 17:44 [Bug libstdc++/67362] New: std::regex("((.)", std::regex_constants::basic) throws redi at gcc dot gnu.org
  2015-08-26 17:44 ` [Bug libstdc++/67362] " redi at gcc dot gnu.org
@ 2015-08-28  2:36 ` timshen at gcc dot gnu.org
  2015-08-28  3:04 ` timshen at gcc dot gnu.org
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: timshen at gcc dot gnu.org @ 2015-08-28  2:36 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #1 from Tim Shen <timshen at gcc dot gnu.org> ---
Author: timshen
Date: Fri Aug 28 02:35:21 2015
New Revision: 227289

URL: https://gcc.gnu.org/viewcvs?rev=227289&root=gcc&view=rev
Log:
        PR libstdc++/67362
        * include/bits/regex_scanner.tcc (_Scanner<>::_M_scan_normal):
        Always returns ordinary char token if the char isn't
        considered a special char.
        * testsuite/28_regex/regression.cc: New test file for collecting
        regression testcases from, typically, bugzilla.

Added:
    trunk/libstdc++-v3/testsuite/28_regex/regression.cc
Modified:
    trunk/libstdc++-v3/ChangeLog
    trunk/libstdc++-v3/include/bits/regex_scanner.tcc


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

* [Bug libstdc++/67362] std::regex("((.)", std::regex_constants::basic) throws
  2015-08-26 17:44 [Bug libstdc++/67362] New: std::regex("((.)", std::regex_constants::basic) throws redi at gcc dot gnu.org
  2015-08-26 17:44 ` [Bug libstdc++/67362] " redi at gcc dot gnu.org
  2015-08-28  2:36 ` timshen at gcc dot gnu.org
@ 2015-08-28  3:04 ` timshen at gcc dot gnu.org
  2015-08-28  3:40 ` timshen at gcc dot gnu.org
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: timshen at gcc dot gnu.org @ 2015-08-28  3:04 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #2 from Tim Shen <timshen at gcc dot gnu.org> ---
Author: timshen
Date: Fri Aug 28 03:03:55 2015
New Revision: 227290

URL: https://gcc.gnu.org/viewcvs?rev=227290&root=gcc&view=rev
Log:
        Backport from mainline
        2015-08-28  Tim Shen  <timshen@google.com>

        PR libstdc++/67362
        * include/bits/regex_scanner.tcc (_Scanner<>::_M_scan_normal):
        Always returns ordinary char token if the char isn't
        considered a special char.
        * testsuite/28_regex/regression.cc: New test file for collecting
        regression testcases from, typically, bugzilla.

Added:
    branches/gcc-5-branch/libstdc++-v3/testsuite/28_regex/regression.cc
Modified:
    branches/gcc-5-branch/libstdc++-v3/ChangeLog
    branches/gcc-5-branch/libstdc++-v3/include/bits/regex_scanner.tcc


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

* [Bug libstdc++/67362] std::regex("((.)", std::regex_constants::basic) throws
  2015-08-26 17:44 [Bug libstdc++/67362] New: std::regex("((.)", std::regex_constants::basic) throws redi at gcc dot gnu.org
                   ` (2 preceding siblings ...)
  2015-08-28  3:04 ` timshen at gcc dot gnu.org
@ 2015-08-28  3:40 ` timshen at gcc dot gnu.org
  2015-08-28  3:41 ` timshen at gcc dot gnu.org
  2023-07-20 11:23 ` redi at gcc dot gnu.org
  5 siblings, 0 replies; 7+ messages in thread
From: timshen at gcc dot gnu.org @ 2015-08-28  3:40 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #3 from Tim Shen <timshen at gcc dot gnu.org> ---
Author: timshen
Date: Fri Aug 28 03:39:53 2015
New Revision: 227291

URL: https://gcc.gnu.org/viewcvs?rev=227291&root=gcc&view=rev
Log:
        Backport from mainline
        2015-08-28  Tim Shen  <timshen@google.com>

        PR libstdc++/67362
        * include/bits/regex_scanner.tcc (_Scanner<>::_M_scan_normal):
        Always returns ordinary char token if the char isn't
        considered a special char.
        * testsuite/28_regex/regression.cc: New test file for collecting
        regression testcases from, typically, bugzilla.

Added:
    branches/gcc-4_9-branch/libstdc++-v3/testsuite/28_regex/regression.cc
Modified:
    branches/gcc-4_9-branch/libstdc++-v3/ChangeLog
    branches/gcc-4_9-branch/libstdc++-v3/include/bits/regex_scanner.tcc


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

* [Bug libstdc++/67362] std::regex("((.)", std::regex_constants::basic) throws
  2015-08-26 17:44 [Bug libstdc++/67362] New: std::regex("((.)", std::regex_constants::basic) throws redi at gcc dot gnu.org
                   ` (3 preceding siblings ...)
  2015-08-28  3:40 ` timshen at gcc dot gnu.org
@ 2015-08-28  3:41 ` timshen at gcc dot gnu.org
  2023-07-20 11:23 ` redi at gcc dot gnu.org
  5 siblings, 0 replies; 7+ messages in thread
From: timshen at gcc dot gnu.org @ 2015-08-28  3:41 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|---                         |FIXED

--- Comment #4 from Tim Shen <timshen at gcc dot gnu.org> ---
Fixed.


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

* [Bug libstdc++/67362] std::regex("((.)", std::regex_constants::basic) throws
  2015-08-26 17:44 [Bug libstdc++/67362] New: std::regex("((.)", std::regex_constants::basic) throws redi at gcc dot gnu.org
                   ` (4 preceding siblings ...)
  2015-08-28  3:41 ` timshen at gcc dot gnu.org
@ 2023-07-20 11:23 ` redi at gcc dot gnu.org
  5 siblings, 0 replies; 7+ messages in thread
From: redi at gcc dot gnu.org @ 2023-07-20 11:23 UTC (permalink / raw)
  To: gcc-bugs

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

Jonathan Wakely <redi at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|---                         |5.3
             Blocks|                            |102445


Referenced Bugs:

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=102445
[Bug 102445] [meta-bug] std::regex issues

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

end of thread, other threads:[~2023-07-20 11:23 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-08-26 17:44 [Bug libstdc++/67362] New: std::regex("((.)", std::regex_constants::basic) throws redi at gcc dot gnu.org
2015-08-26 17:44 ` [Bug libstdc++/67362] " redi at gcc dot gnu.org
2015-08-28  2:36 ` timshen at gcc dot gnu.org
2015-08-28  3:04 ` timshen at gcc dot gnu.org
2015-08-28  3:40 ` timshen at gcc dot gnu.org
2015-08-28  3:41 ` timshen at gcc dot gnu.org
2023-07-20 11:23 ` redi 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).