re PR testsuite/53046 (New libstdc++ test failures)
authorChris Jefferson <chris@bubblescope.net>
Mon, 23 Apr 2012 11:17:28 +0000 (11:17 +0000)
committerPaolo Carlini <paolo@gcc.gnu.org>
Mon, 23 Apr 2012 11:17:28 +0000 (11:17 +0000)
2012-04-23  Chris Jefferson  <chris@bubblescope.net>

PR testsuite/53046
* testsuite/25_algorithms/stable_partition/mem_check.cc: Fix size
of array A.
* testsuite/25_algorithms/stable_sort/mem_check.cc: Likewise.

From-SVN: r186701

libstdc++-v3/ChangeLog
libstdc++-v3/testsuite/25_algorithms/stable_partition/mem_check.cc
libstdc++-v3/testsuite/25_algorithms/stable_sort/mem_check.cc

index 6ad664509b3a93ec1a17ab448523cdd78a805a81..cf791b440acbfc12e216864f1b6102d223143085 100644 (file)
@@ -1,3 +1,10 @@
+2012-04-23  Chris Jefferson  <chris@bubblescope.net>
+
+       PR testsuite/53046
+       * testsuite/25_algorithms/stable_partition/mem_check.cc: Fix size
+       of array A.
+       * testsuite/25_algorithms/stable_sort/mem_check.cc: Likewise.
+
 2012-04-22  Paolo Carlini  <paolo.carlini@oracle.com>
 
        PR libstdc++/53067
index 81d816d36ad67086e35678e253e75a2b5f74ea7c..89965fa30fc838845a2fe18bd55af4b2a74af082 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2009 Free Software Foundation, Inc.
+// Copyright (C) 2009, 2012 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
@@ -31,7 +31,7 @@ using __gnu_test::destructor;
 typedef test_container<copy_tracker, random_access_iterator_wrapper> Container;
 
 const int A[] = {10, 20, 1, 11, 2, 21, 28, 29, 12, 35, 15, 27, 6, 16, 7, 
-                 25, 17, 8, 23, 18, 9, 19, 24, 30, 13, 4, 14, 22, 26};
+                 25, 17, 8, 23, 18, 9, 19, 24, 30, 13, 4, 14, 22, 26, 0};
 
 bool even(const copy_tracker& ct)
 { return ct.id() < 19; }
index 78c14b43ec5ab214a692b89f239e34907d7b4bec..8b36f7a33127f156b8006b20a10e863ce44e1367 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2009 Free Software Foundation, Inc.
+// Copyright (C) 2009, 2012 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
@@ -31,7 +31,7 @@ using __gnu_test::destructor;
 typedef test_container<copy_tracker, random_access_iterator_wrapper> Container;
 
 const int A[] = {10, 20, 1, 11, 2, 21, 28, 29, 12, 35, 15, 27, 6, 16, 7, 
-                 25, 17, 8, 23, 18, 9, 19, 24, 30, 13, 4, 14, 22, 26};
+                 25, 17, 8, 23, 18, 9, 19, 24, 30, 13, 4, 14, 22, 26, 0};
 
 void
 test_mem1(int throw_count)