]> gcc.gnu.org Git - gcc.git/commitdiff
66055.cc: Add constructor invocations.
authorFrançois Dumont <fdumont@gcc.gnu.org>
Tue, 19 May 2015 19:57:09 +0000 (19:57 +0000)
committerFrançois Dumont <fdumont@gcc.gnu.org>
Tue, 19 May 2015 19:57:09 +0000 (19:57 +0000)
2015-05-19  François Dumont  <fdumont@gcc.gnu.org>

* 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
libstdc++-v3/testsuite/23_containers/unordered_map/cons/66055.cc
libstdc++-v3/testsuite/23_containers/unordered_multimap/cons/66055.cc
libstdc++-v3/testsuite/23_containers/unordered_multiset/cons/66055.cc
libstdc++-v3/testsuite/23_containers/unordered_set/cons/66055.cc

index f548264ef8557dfde8f70a5a5352e77df56d3ecb..0cdd178d9eef83bec3eac4eb7fb9d1f33346b43f 100644 (file)
@@ -1,3 +1,11 @@
+2015-05-19  François Dumont  <fdumont@gcc.gnu.org>
+
+       * 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  <ramana.radhakrishnan@arm.com>
 
        * configure.host: Define cpu_defines_dir for ARM.
        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  <jwakely@redhat.com>
 
index 0d3e384110f7310e38aa61e5ee980708fb8099ef..17efac559cb61af56e3da409a6277c1a974e99d4 100644 (file)
@@ -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());
index c4d68ec16da665b5bc50675112752cac38b6e644..d99d3524a5754fd0448b15992c6fc48b964ee046 100644 (file)
@@ -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());
index 0680951ebd6d7a5d802b5500b127b4a4661a592b..7ae17b789cb9086d3afc8b4d2500071b207beb72 100644 (file)
@@ -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());
index 2ead0b1e5d1ced807541ec56d92ea018345e4897..73e223d94982146e9ca79de286f6f724463739a3 100644 (file)
@@ -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());
This page took 0.071649 seconds and 5 git commands to generate.