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] Disable two tests on h8300 port.


Hi,

Attached is a patch to disable two tests on h8300 port.  Both tests
happen to have really huge arrays that h8300 port cannot deal with.
Committed.

Kazu Hirata

2002-02-10  Kazu Hirata  <kazu@hxi.com>

	* gcc.c-torture/compile/961203-1.x: Disable on h8300 port.
	* gcc.c-torture/compile/980506-1.x: Likewise.

Index: 961203-1.x
===================================================================
RCS file: /cvs/gcc/gcc/gcc/testsuite/gcc.c-torture/compile/961203-1.x,v
retrieving revision 1.6
diff -u -r1.6 961203-1.x
--- 961203-1.x	2001/11/09 01:17:07	1.6
+++ 961203-1.x	2002/02/10 20:34:08
@@ -4,10 +4,15 @@
         return 1;
 }
 
+if { [istarget "h8300-*-*"] } {
+	return 1
+}
+
 # Array 'a' in this test is too large to fit in 64K.
 
 global target_triplet
 if { [istarget "m6811-*-*"] || [istarget "m6812-*-*"]} {
 	set torture_compile_xfail "$target_triplet"
 }
+
 return 0
Index: 980506-1.x
===================================================================
RCS file: /cvs/gcc/gcc/gcc/testsuite/gcc.c-torture/compile/980506-1.x,v
retrieving revision 1.2
diff -u -r1.2 980506-1.x
--- 980506-1.x	2001/11/09 01:17:07	1.2
+++ 980506-1.x	2002/02/10 20:34:08
@@ -3,4 +3,8 @@
         return 1;
 }
 
+if { [istarget "h8300-*-*"] } {
+        return 1;
+}
+
 return 0


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