diff options
-rw-r--r-- | gcc/testsuite/ChangeLog | 10 | ||||
-rw-r--r-- | gcc/testsuite/g++.old-deja/g++.bugs/900227_01.C | 2 | ||||
-rw-r--r-- | gcc/testsuite/g++.old-deja/g++.eh/badalloc1.C | 1 | ||||
-rw-r--r-- | gcc/testsuite/g++.old-deja/g++.mike/ns15.C | 1 | ||||
-rw-r--r-- | gcc/testsuite/g++.old-deja/g++.pt/crash16.C | 1 |
5 files changed, 14 insertions, 1 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index c17a76a..572fb2a 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,13 @@ +2001-11-03 Geoffrey Keating <geoffk@redhat.com> + + * g++.old-deja/g++.bugs/900227_01.C: short and pointer are the + same size, so no warning should be produced on stormy16. + + * g++.old-deja/g++.eh/badalloc1.C: Will always fail on stormy16 + due to oversized array. + * g++.old-deja/g++.mike/ns15.C: Likewise. + * g++.old-deja/g++.pt/crash16.C: Likewise. + 2001-11-02 Graham Stott <grahams@redhat.com> * g++.dgother/debug1.C: Fix typos. diff --git a/gcc/testsuite/g++.old-deja/g++.bugs/900227_01.C b/gcc/testsuite/g++.old-deja/g++.bugs/900227_01.C index 51bd60a..f5604dc 100644 --- a/gcc/testsuite/g++.old-deja/g++.bugs/900227_01.C +++ b/gcc/testsuite/g++.old-deja/g++.bugs/900227_01.C @@ -32,7 +32,7 @@ int main (); -short s = (short) &main; // WARNING - small integer XFAIL h8*-*-* +short s = (short) &main; // WARNING - small integer XFAIL h8*-*-* stormy16-*-* char c = (char) &main; // WARNING - small integer int main () { return 0; } diff --git a/gcc/testsuite/g++.old-deja/g++.eh/badalloc1.C b/gcc/testsuite/g++.old-deja/g++.eh/badalloc1.C index 2499931..2c48de7 100644 --- a/gcc/testsuite/g++.old-deja/g++.eh/badalloc1.C +++ b/gcc/testsuite/g++.old-deja/g++.eh/badalloc1.C @@ -1,3 +1,4 @@ +// excess errors test - XFAIL stormy16-*-* // Copyright (C) 2000 Free Software Foundation, Inc. // Contributed by Nathan Sidwell 6 June 2000 <nathan@codesourcery.com> diff --git a/gcc/testsuite/g++.old-deja/g++.mike/ns15.C b/gcc/testsuite/g++.old-deja/g++.mike/ns15.C index 5af0724..56a7f78 100644 --- a/gcc/testsuite/g++.old-deja/g++.mike/ns15.C +++ b/gcc/testsuite/g++.old-deja/g++.mike/ns15.C @@ -1,4 +1,5 @@ // Build don't link: +// excess errors test - XFAIL stormy16-*-* #include <stdio.h> #include <stdlib.h> diff --git a/gcc/testsuite/g++.old-deja/g++.pt/crash16.C b/gcc/testsuite/g++.old-deja/g++.pt/crash16.C index 45511bb..b8a949a 100644 --- a/gcc/testsuite/g++.old-deja/g++.pt/crash16.C +++ b/gcc/testsuite/g++.old-deja/g++.pt/crash16.C @@ -1,5 +1,6 @@ // Build don't link: // Special g++ Options: +// excess errors test - XFAIL stormy16-*-* extern "C" void qsort(void *base, __SIZE_TYPE__ nmemb, __SIZE_TYPE__ size, int (*compar)(const void *, const void *)); |