From 90f0d17641cc5f0b3fabbc64fda961160a587840 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Dumont?= Date: Tue, 19 May 2015 19:57:09 +0000 Subject: [PATCH] 66055.cc: Add constructor invocations. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 2015-05-19 François Dumont * testsuite/23_containers/unordered_map/cons/66055.cc: Add constructor invocations. * testsuite/23_containers/unordered_multimap/cons/66055.cc: Likewise. * testsuite/23_containers/unordered_multiset/cons/66055.cc: Likewise. * testsuite/23_containers/unordered_set/cons/66055.cc: Likewise. From-SVN: r223413 --- libstdc++-v3/ChangeLog | 13 ++++++++----- .../23_containers/unordered_map/cons/66055.cc | 4 ++++ .../23_containers/unordered_multimap/cons/66055.cc | 4 ++++ .../23_containers/unordered_multiset/cons/66055.cc | 4 ++++ .../23_containers/unordered_set/cons/66055.cc | 4 ++++ 5 files changed, 24 insertions(+), 5 deletions(-) diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index f548264ef85..0cdd178d9ee 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,11 @@ +2015-05-19 François Dumont + + * testsuite/23_containers/unordered_map/cons/66055.cc: Add constructor + invocations. + * testsuite/23_containers/unordered_multimap/cons/66055.cc: Likewise. + * testsuite/23_containers/unordered_multiset/cons/66055.cc: Likewise. + * testsuite/23_containers/unordered_set/cons/66055.cc: Likewise. + 2015-05-17 Ramana Radhakrishnan * configure.host: Define cpu_defines_dir for ARM. @@ -17,11 +25,6 @@ missing constructors. * include/profile/unordered_set (unordered_set, unordered_multiset): Likewise. - * testsuite/23_containers/unordered_map/cons/66055.cc: Add constructor - invocations. - * testsuite/23_containers/unordered_multimap/cons/66055.cc: Likewise. - * testsuite/23_containers/unordered_multiset/cons/66055.cc: Likewise. - * testsuite/23_containers/unordered_set/cons/66055.cc: Likewise. 2015-05-15 Jonathan Wakely diff --git a/libstdc++-v3/testsuite/23_containers/unordered_map/cons/66055.cc b/libstdc++-v3/testsuite/23_containers/unordered_map/cons/66055.cc index 0d3e384110f..17efac559cb 100644 --- a/libstdc++-v3/testsuite/23_containers/unordered_map/cons/66055.cc +++ b/libstdc++-v3/testsuite/23_containers/unordered_map/cons/66055.cc @@ -28,3 +28,7 @@ using alloc_type = test_type::allocator_type; test_type h1(10, alloc_type()); test_type h2(10, hasher_type(), alloc_type()); +test_type h3(h1.begin(), h1.end(), 10, alloc_type()); +test_type h4(h1.begin(), h1.end(), 10, hasher_type(), alloc_type()); +test_type h5({ { 1, 1 } }, 10, alloc_type()); +test_type h6({ { 1, 1 } }, 10, hasher_type(), alloc_type()); diff --git a/libstdc++-v3/testsuite/23_containers/unordered_multimap/cons/66055.cc b/libstdc++-v3/testsuite/23_containers/unordered_multimap/cons/66055.cc index c4d68ec16da..d99d3524a57 100644 --- a/libstdc++-v3/testsuite/23_containers/unordered_multimap/cons/66055.cc +++ b/libstdc++-v3/testsuite/23_containers/unordered_multimap/cons/66055.cc @@ -28,3 +28,7 @@ using alloc_type = test_type::allocator_type; test_type h1(10, alloc_type()); test_type h2(10, hasher_type(), alloc_type()); +test_type h3(h1.begin(), h1.end(), 10, alloc_type()); +test_type h4(h1.begin(), h1.end(), 10, hasher_type(), alloc_type()); +test_type h5({ { 1, 1 } }, 10, alloc_type()); +test_type h6({ { 1, 1 } }, 10, hasher_type(), alloc_type()); diff --git a/libstdc++-v3/testsuite/23_containers/unordered_multiset/cons/66055.cc b/libstdc++-v3/testsuite/23_containers/unordered_multiset/cons/66055.cc index 0680951ebd6..7ae17b789cb 100644 --- a/libstdc++-v3/testsuite/23_containers/unordered_multiset/cons/66055.cc +++ b/libstdc++-v3/testsuite/23_containers/unordered_multiset/cons/66055.cc @@ -28,3 +28,7 @@ using alloc_type = test_type::allocator_type; test_type h1(10, alloc_type()); test_type h2(10, hasher_type(), alloc_type()); +test_type h3(h1.begin(), h1.end(), 10, alloc_type()); +test_type h4(h1.begin(), h1.end(), 10, hasher_type(), alloc_type()); +test_type h5({ 1, 1 }, 10, alloc_type()); +test_type h6({ 1, 1 }, 10, hasher_type(), alloc_type()); diff --git a/libstdc++-v3/testsuite/23_containers/unordered_set/cons/66055.cc b/libstdc++-v3/testsuite/23_containers/unordered_set/cons/66055.cc index 2ead0b1e5d1..73e223d9498 100644 --- a/libstdc++-v3/testsuite/23_containers/unordered_set/cons/66055.cc +++ b/libstdc++-v3/testsuite/23_containers/unordered_set/cons/66055.cc @@ -28,3 +28,7 @@ using alloc_type = test_type::allocator_type; test_type h1(10, alloc_type()); test_type h2(10, hasher_type(), alloc_type()); +test_type h3(h1.begin(), h1.end(), 10, alloc_type()); +test_type h4(h1.begin(), h1.end(), 10, hasher_type(), alloc_type()); +test_type h5({ 1, 1 }, 10, alloc_type()); +test_type h6({ 1, 1 }, 10, hasher_type(), alloc_type());