900227_01.C: short and pointer are the same size, so no warning should be produced...
authorGeoffrey Keating <geoffk@redhat.com>
Sat, 3 Nov 2001 19:50:54 +0000 (19:50 +0000)
committerGeoffrey Keating <geoffk@gcc.gnu.org>
Sat, 3 Nov 2001 19:50:54 +0000 (19:50 +0000)
* 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.

From-SVN: r46738

gcc/testsuite/ChangeLog
gcc/testsuite/g++.old-deja/g++.bugs/900227_01.C
gcc/testsuite/g++.old-deja/g++.eh/badalloc1.C
gcc/testsuite/g++.old-deja/g++.mike/ns15.C
gcc/testsuite/g++.old-deja/g++.pt/crash16.C

index c17a76ab9640e746e821db0774d715c69433648a..572fb2ac3302d92368f6fc57ac1432653ba87f36 100644 (file)
@@ -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.
index 51bd60a68d199a3d07b64a8863f0844124949019..f5604dc397d85c5c1d6ae9a814599e54ec394255 100644 (file)
@@ -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; }
index 2499931589b910733b9d83d668802c234d657da3..2c48de7bf40648861a30fae30fdbc5f2d6337936 100644 (file)
@@ -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>
 
index 5af072444766a4781933826879f1471bf2477986..56a7f78a1dc83af3f4e0761b9fcfc1815cb94fc9 100644 (file)
@@ -1,4 +1,5 @@
 // Build don't link:
+// excess errors test - XFAIL stormy16-*-*
 
 #include <stdio.h>
 #include <stdlib.h>
index 45511bb850441e5eb5bb52d760369335ac88b179..b8a949adfc196ad16e08a8d6377d9bcd180e7bdb 100644 (file)
@@ -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 *));