This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[patch] Re: [darwin] testsuite wchar_t-1.c & wint_t-1.c


Geoff Keating wrote:

Date: Sun, 25 May 2003 21:00:04 +0200
From: Andreas Tobler <toa@pop.agri.ch>


can we xfail these two tests on darwin?
They both include wchar.h which is not available on darwin, at least on my machine. (and if they are, please point me to the package where it is in)


Yes, we can.

Ok to apply?


Andreas


Index: ChangeLog
===================================================================
RCS file: /cvs/gcc/gcc/gcc/testsuite/ChangeLog,v
retrieving revision 1.2705
diff -u -r1.2705 ChangeLog
--- ChangeLog	25 May 2003 12:59:22 -0000	1.2705
+++ ChangeLog	26 May 2003 17:44:50 -0000
@@ -1,3 +1,8 @@
+2003-05-26  Andreas Tobler <a.tobler@schweiz.ch>
+
+	* gcc.dg/wchar_t-1.c: XFAIL on darwin, no wchar.h available.
+	* gcc.dg/wint_t-1.c: Likewise.
+
 2003-05-25  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
 
 	* g++.dg/template/access11.C: New test.
Index: gcc.dg/wchar_t-1.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/testsuite/gcc.dg/wchar_t-1.c,v
retrieving revision 1.6
diff -u -r1.6 wchar_t-1.c
--- gcc.dg/wchar_t-1.c	26 Oct 2002 14:03:12 -0000	1.6
+++ gcc.dg/wchar_t-1.c	26 May 2003 17:44:50 -0000
@@ -5,7 +5,7 @@
    match.  */
 
 #define _STDDEF_H
-#include <wchar.h>
+#include <wchar.h> /* { dg-excess-errors "" { xfail *-*-darwin* } } */
 
 __WCHAR_TYPE__ __wc_t__;
 wchar_t *wc_t_p;
Index: gcc.dg/wint_t-1.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/testsuite/gcc.dg/wint_t-1.c,v
retrieving revision 1.6
diff -u -r1.6 wint_t-1.c
--- gcc.dg/wint_t-1.c	26 Oct 2002 14:03:12 -0000	1.6
+++ gcc.dg/wint_t-1.c	26 May 2003 17:44:50 -0000
@@ -5,7 +5,7 @@
    match.  */
 
 #define _STDDEF_H
-#include <wchar.h>
+#include <wchar.h> /* { dg-excess-errors "" { xfail *-*-darwin* } } */
 
 __WINT_TYPE__ __wi_t__;
 wint_t *wi_t_p;

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]