diff options
-rw-r--r-- | libstdc++-v3/ChangeLog | 5 | ||||
-rw-r--r-- | libstdc++-v3/testsuite/23_containers/vector/resize/1.cc | 3 | ||||
-rw-r--r-- | libstdc++-v3/testsuite/27_io/ios_base/storage/2.cc | 3 |
3 files changed, 11 insertions, 0 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 7fdce46..e5cb24a 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,8 @@ +2005-08-22 Geoffrey Keating <geoffk@apple.com> + + * testsuite/23_containers/vector/resize/1.cc: XFAIL on darwin8. + * testsuite/27_io/ios_base/storage/2.cc: Likewise. + 2005-08-19 J"orn Rennecke <joern.rennecke@st.com> * config/cpu/sh/atomicity.h: Replace broken generic code with current diff --git a/libstdc++-v3/testsuite/23_containers/vector/resize/1.cc b/libstdc++-v3/testsuite/23_containers/vector/resize/1.cc index a03ec2d..c6c813c 100644 --- a/libstdc++-v3/testsuite/23_containers/vector/resize/1.cc +++ b/libstdc++-v3/testsuite/23_containers/vector/resize/1.cc @@ -25,6 +25,9 @@ // XXX for very large allocations. However -lmalloc seems to work. // See http://gcc.gnu.org/ml/libstdc++/2002-12/msg00131.html // { dg-options "-lmalloc" { target mips*-*-irix6* } } +// This fails on Darwin 8 because malloc doesn't return NULL even +// if an allocation fails (filed as Radar 3884894). +// { dg-do run { xfail *-*-darwin8* } } #include <vector> #include <stdexcept> diff --git a/libstdc++-v3/testsuite/27_io/ios_base/storage/2.cc b/libstdc++-v3/testsuite/27_io/ios_base/storage/2.cc index 795adc9..55792fa 100644 --- a/libstdc++-v3/testsuite/27_io/ios_base/storage/2.cc +++ b/libstdc++-v3/testsuite/27_io/ios_base/storage/2.cc @@ -25,6 +25,9 @@ // XXX -lmalloc seems to work. // See http://gcc.gnu.org/ml/gcc/2002-05/msg01012.html // { dg-options "-lmalloc" { target mips*-*-irix6* } } +// This fails on Darwin 8 because malloc doesn't return NULL even +// if an allocation fails (filed as Radar 3884894). +// { dg-do run { xfail *-*-darwin8* } } #include <sstream> #include <iostream> |