summaryrefslogtreecommitdiff
path: root/libstdc++-v3
diff options
context:
space:
mode:
authorredi <redi@138bc75d-0d04-0410-961f-82ee72b054a4>2013-11-19 23:22:26 +0000
committerredi <redi@138bc75d-0d04-0410-961f-82ee72b054a4>2013-11-19 23:22:26 +0000
commit740f6bf6fe1b4e54214a39939b2a8941d2b03f14 (patch)
treeee256d570a02c1fea73e89f92ae8b4bbad6be30b /libstdc++-v3
parent7a19386fc9499eeaf1012102ba9d031d584c7179 (diff)
downloadgcc-740f6bf6fe1b4e54214a39939b2a8941d2b03f14.tar.gz
* config/abi/pre/gnu.ver (_ZNSt11regex_errorC*): Export regex_error
constructors. * testsuite/20_util/addressof/1.cc: Remove { dg-do compile }. * testsuite/20_util/allocator_traits/members/destroy.cc: Likewise. * testsuite/20_util/allocator_traits/members/select.cc: Likewise. Fix failure. * testsuite/28_regex/basic_regex/ctors/extended/cstring.cc: Likewise. * testsuite/28_regex/init-list.cc: Likewise. * testsuite/28_regex/regex_error/regex_error.cc: Likewise. * testsuite/28_regex/sub_match/length.cc: Likewise. Add main. * testsuite/28_regex/sub_match/cast_char.cc: Likewise. Fix test. * testsuite/28_regex/sub_match/cast_wchar_t.cc: Likewise. * testsuite/tr1/7_regular_expressions/regex/cons/char/ c_string_extended.cc: Delete. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@205063 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3')
-rw-r--r--libstdc++-v3/ChangeLog15
-rw-r--r--libstdc++-v3/config/abi/pre/gnu.ver3
-rw-r--r--libstdc++-v3/testsuite/20_util/addressof/1.cc1
-rw-r--r--libstdc++-v3/testsuite/20_util/allocator_traits/members/destroy.cc1
-rw-r--r--libstdc++-v3/testsuite/20_util/allocator_traits/members/select.cc3
-rw-r--r--libstdc++-v3/testsuite/28_regex/basic_regex/ctors/extended/cstring.cc3
-rw-r--r--libstdc++-v3/testsuite/28_regex/init-list.cc1
-rw-r--r--libstdc++-v3/testsuite/28_regex/regex_error/regex_error.cc1
-rw-r--r--libstdc++-v3/testsuite/28_regex/sub_match/cast_char.cc9
-rw-r--r--libstdc++-v3/testsuite/28_regex/sub_match/cast_wchar_t.cc9
-rw-r--r--libstdc++-v3/testsuite/28_regex/sub_match/length.cc6
-rw-r--r--libstdc++-v3/testsuite/tr1/7_regular_expressions/regex/cons/char/c_string_extended.cc42
12 files changed, 31 insertions, 63 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog
index 27629f9c59d..891e5c56511 100644
--- a/libstdc++-v3/ChangeLog
+++ b/libstdc++-v3/ChangeLog
@@ -19,6 +19,21 @@
* testsuite/23_containers/vector/allocator/swap.cc: Add elements
before swapping.
+ * config/abi/pre/gnu.ver (_ZNSt11regex_errorC*): Export regex_error
+ constructors.
+ * testsuite/20_util/addressof/1.cc: Remove { dg-do compile }.
+ * testsuite/20_util/allocator_traits/members/destroy.cc: Likewise.
+ * testsuite/20_util/allocator_traits/members/select.cc: Likewise. Fix
+ failure.
+ * testsuite/28_regex/basic_regex/ctors/extended/cstring.cc: Likewise.
+ * testsuite/28_regex/init-list.cc: Likewise.
+ * testsuite/28_regex/regex_error/regex_error.cc: Likewise.
+ * testsuite/28_regex/sub_match/length.cc: Likewise. Add main.
+ * testsuite/28_regex/sub_match/cast_char.cc: Likewise. Fix test.
+ * testsuite/28_regex/sub_match/cast_wchar_t.cc: Likewise.
+ * testsuite/tr1/7_regular_expressions/regex/cons/char/
+ c_string_extended.cc: Delete.
+
2013-11-19 Paolo Carlini <paolo.carlini@oracle.com>
* include/experimental/string_view (_S_max_size): Remove.
diff --git a/libstdc++-v3/config/abi/pre/gnu.ver b/libstdc++-v3/config/abi/pre/gnu.ver
index d3c399f6bf2..323579399e6 100644
--- a/libstdc++-v3/config/abi/pre/gnu.ver
+++ b/libstdc++-v3/config/abi/pre/gnu.ver
@@ -1368,6 +1368,9 @@ GLIBCXX_3.4.20 {
# std::__throw_out_of_range_fmt(char const*, ...)
_ZSt24__throw_out_of_range_fmtPKcz;
+ # std::regex_error::regex_error(std::regex_constants::error_type)
+ _ZNSt11regex_errorC[01]ENSt15regex_constants10error_typeE;
+
} GLIBCXX_3.4.19;
# Symbols in the support library (libsupc++) have their own tag.
diff --git a/libstdc++-v3/testsuite/20_util/addressof/1.cc b/libstdc++-v3/testsuite/20_util/addressof/1.cc
index e874258b501..2b32855b72a 100644
--- a/libstdc++-v3/testsuite/20_util/addressof/1.cc
+++ b/libstdc++-v3/testsuite/20_util/addressof/1.cc
@@ -1,5 +1,4 @@
// { dg-options "-std=gnu++0x" }
-// { dg-do compile }
// 2010-05-20 Paolo Carlini <paolo.carlini@oracle.com>
diff --git a/libstdc++-v3/testsuite/20_util/allocator_traits/members/destroy.cc b/libstdc++-v3/testsuite/20_util/allocator_traits/members/destroy.cc
index a8e9d0ad44a..56d598a21d1 100644
--- a/libstdc++-v3/testsuite/20_util/allocator_traits/members/destroy.cc
+++ b/libstdc++-v3/testsuite/20_util/allocator_traits/members/destroy.cc
@@ -1,5 +1,4 @@
// { dg-options "-std=gnu++0x" }
-// { dg-do compile }
// Copyright (C) 2011-2013 Free Software Foundation, Inc.
//
diff --git a/libstdc++-v3/testsuite/20_util/allocator_traits/members/select.cc b/libstdc++-v3/testsuite/20_util/allocator_traits/members/select.cc
index 2ef2e347cc5..2671f18257d 100644
--- a/libstdc++-v3/testsuite/20_util/allocator_traits/members/select.cc
+++ b/libstdc++-v3/testsuite/20_util/allocator_traits/members/select.cc
@@ -1,5 +1,4 @@
// { dg-options "-std=gnu++0x" }
-// { dg-do compile }
// Copyright (C) 2011-2013 Free Software Foundation, Inc.
//
@@ -54,7 +53,7 @@ void test01()
void test02()
{
- typedef std::allocator_traits<alloc1<X>> traits_type;
+ typedef std::allocator_traits<alloc2<X>> traits_type;
traits_type::allocator_type a{1};
const traits_type::allocator_type& a2
= traits_type::select_on_container_copy_construction(a);
diff --git a/libstdc++-v3/testsuite/28_regex/basic_regex/ctors/extended/cstring.cc b/libstdc++-v3/testsuite/28_regex/basic_regex/ctors/extended/cstring.cc
index fa2e009b2d2..03c20a4f6dd 100644
--- a/libstdc++-v3/testsuite/28_regex/basic_regex/ctors/extended/cstring.cc
+++ b/libstdc++-v3/testsuite/28_regex/basic_regex/ctors/extended/cstring.cc
@@ -1,4 +1,3 @@
-// { dg-do compile }
// { dg-options "-std=c++0x" }
// 2007-03-12 Stephen M. Webb <stephen.webb@bregmasoft.com>
@@ -33,7 +32,7 @@ test01()
std::regex re("(wee|week)(knights|night)", std::regex::extended);
VERIFY( re.flags() == std::regex::extended );
- VERIFY( re.mark_count() == 0 );
+ VERIFY( re.mark_count() == 2 );
}
int main()
diff --git a/libstdc++-v3/testsuite/28_regex/init-list.cc b/libstdc++-v3/testsuite/28_regex/init-list.cc
index ee71bb99be3..390e715cc34 100644
--- a/libstdc++-v3/testsuite/28_regex/init-list.cc
+++ b/libstdc++-v3/testsuite/28_regex/init-list.cc
@@ -1,5 +1,4 @@
// { dg-options "-std=gnu++0x" }
-// { dg-do compile }
// Copyright (C) 2008-2013 Free Software Foundation, Inc.
//
diff --git a/libstdc++-v3/testsuite/28_regex/regex_error/regex_error.cc b/libstdc++-v3/testsuite/28_regex/regex_error/regex_error.cc
index 9cb08f9cc81..253797329cf 100644
--- a/libstdc++-v3/testsuite/28_regex/regex_error/regex_error.cc
+++ b/libstdc++-v3/testsuite/28_regex/regex_error/regex_error.cc
@@ -1,5 +1,4 @@
// { dg-options "-std=c++0x" }
-// { dg-do compile }
//
// 2009-06-17 Stephen M. Webb <stephen.webb@xandros.com>
//
diff --git a/libstdc++-v3/testsuite/28_regex/sub_match/cast_char.cc b/libstdc++-v3/testsuite/28_regex/sub_match/cast_char.cc
index ac2f305ccd4..300757e9a27 100644
--- a/libstdc++-v3/testsuite/28_regex/sub_match/cast_char.cc
+++ b/libstdc++-v3/testsuite/28_regex/sub_match/cast_char.cc
@@ -1,4 +1,3 @@
-// { dg-do compile }
// { dg-options "-std=c++0x" }
//
@@ -27,9 +26,7 @@
#include <string>
#include <testsuite_hooks.h>
-
-void
-test01()
+int main()
{
bool test __attribute__((unused)) = true;
@@ -39,8 +36,8 @@ test01()
value_type test_data[] = "cabbage";
sub_match_type sm;
- sm.first = test_data + 0;
- sm.second = test_data + sizeof(test_data)/sizeof(value_type);
+ sm.first = std::begin(test_data);
+ sm.second = std::end(test_data) - 1;
sm.matched = true;
string_type sm_string = sm;
diff --git a/libstdc++-v3/testsuite/28_regex/sub_match/cast_wchar_t.cc b/libstdc++-v3/testsuite/28_regex/sub_match/cast_wchar_t.cc
index b4cbe1abdfe..2a5cd3fa048 100644
--- a/libstdc++-v3/testsuite/28_regex/sub_match/cast_wchar_t.cc
+++ b/libstdc++-v3/testsuite/28_regex/sub_match/cast_wchar_t.cc
@@ -1,4 +1,3 @@
-// { dg-do compile }
// { dg-options "-std=c++0x" }
//
@@ -27,9 +26,7 @@
#include <string>
#include <testsuite_hooks.h>
-
-void
-test01()
+int main()
{
bool test __attribute__((unused)) = true;
@@ -39,8 +36,8 @@ test01()
value_type test_data[] = L"cabbage";
sub_match_type sm;
- sm.first = test_data + 0;
- sm.second = test_data + sizeof(test_data)/sizeof(value_type);
+ sm.first = std::begin(test_data);
+ sm.second = std::end(test_data) - 1;
sm.matched = true;
string_type sm_string = sm;
diff --git a/libstdc++-v3/testsuite/28_regex/sub_match/length.cc b/libstdc++-v3/testsuite/28_regex/sub_match/length.cc
index e4acf711f96..7f073e4242b 100644
--- a/libstdc++-v3/testsuite/28_regex/sub_match/length.cc
+++ b/libstdc++-v3/testsuite/28_regex/sub_match/length.cc
@@ -1,4 +1,3 @@
-// { dg-do compile }
// { dg-options "-std=c++0x" }
//
@@ -47,3 +46,8 @@ test01()
VERIFY( sm1.length() == test_len );
VERIFY( sm2.length() == 0 );
}
+
+int main()
+{
+ test01();
+}
diff --git a/libstdc++-v3/testsuite/tr1/7_regular_expressions/regex/cons/char/c_string_extended.cc b/libstdc++-v3/testsuite/tr1/7_regular_expressions/regex/cons/char/c_string_extended.cc
deleted file mode 100644
index 24fa717d840..00000000000
--- a/libstdc++-v3/testsuite/tr1/7_regular_expressions/regex/cons/char/c_string_extended.cc
+++ /dev/null
@@ -1,42 +0,0 @@
-// { dg-do compile }
-
-// 2007-03-12 Stephen M. Webb <stephen.webb@bregmasoft.com>
-//
-// Copyright (C) 2007-2013 Free Software Foundation, Inc.
-//
-// This file is part of the GNU ISO C++ Library. This library is free
-// software; you can redistribute it and/or modify it under the
-// terms of the GNU General Public License as published by the
-// Free Software Foundation; either version 3, or (at your option)
-// any later version.
-//
-// This library is distributed in the hope that it will be useful,
-// but WITHOUT ANY WARRANTY; without even the implied warranty of
-// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-// GNU General Public License for more details.
-//
-// You should have received a copy of the GNU General Public License along
-// with this library; see the file COPYING3. If not see
-// <http://www.gnu.org/licenses/>.
-
-// 7.8.2 basic_regex constructors
-
-#include <tr1/regex>
-#include <testsuite_hooks.h>
-
-void
-test01()
-{
- bool test __attribute__((unused)) = true;
-
- std::tr1::regex re("(wee|week)(knights|night)", std::tr1::regex::extended);
-
- VERIFY( re.flags() == std::tr1::regex::extended );
- VERIFY( re.mark_count() == 0 );
-}
-
-int main()
-{
- test01();
- return 0;
-}