]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/28_regex/basic_regex/assign/char/cstring.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 28_regex / basic_regex / assign / char / cstring.cc
CommitLineData
52066eae 1// { dg-do run { target c++11 } }
b6a8e347 2// { dg-timeout-factor 2 }
849cab7b
SW
3
4// 2009-06-05 Stephen M. Webb <stephen.webb@bregmasoft.ca>
5//
7adcbafe 6// Copyright (C) 2009-2022 Free Software Foundation, Inc.
849cab7b
SW
7//
8// This file is part of the GNU ISO C++ Library. This library is free
9// software; you can redistribute it and/or modify it under the
10// terms of the GNU General Public License as published by the
11// Free Software Foundation; either version 3, or (at your option)
12// any later version.
13
14// This library is distributed in the hope that it will be useful,
15// but WITHOUT ANY WARRANTY; without even the implied warranty of
16// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17// GNU General Public License for more details.
18
19// You should have received a copy of the GNU General Public License along
20// with this library; see the file COPYING3. If not see
21// <http://www.gnu.org/licenses/>.
22
23// C++0X [28.8.3] class template basic_regex assign()
24
25#include <regex>
849cab7b
SW
26
27// Tests assign operation from a C-style null-terminated-string.
28void test01()
29{
849cab7b
SW
30 std::basic_regex<char> re;
31
32 const char* cs = "aab";
33 re.assign(cs);
34}
35
770acfc9
TS
36// basic_regex::operator=() resets flags. libstdc++/64680
37void test02()
38{
770acfc9
TS
39 std::regex re("[[:alnum:]]", std::regex_constants::basic);
40 re = "\\w+";
41}
42
849cab7b
SW
43int
44main()
45{
46 test01();
770acfc9 47 test02();
849cab7b 48 return 0;
9ae63018 49}