This is the mail archive of the gdb-patches@sources.redhat.com mailing list for the GDB 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]

[RFA]: Don't execute C++ tests for HC11/HC12


Hi!

The C++ IO streams are too large for HC11/HC12 and are thus not available.
The gdb C++ tests use them and don't compile.

Can you approve this patch to avoid executing the C++ tests for the m6811/m6812 targets?

Thanks,
	Stephane

2003-02-23 Stephane Carrez <stcarrez at nerim dot fr>

* lib/gdb.exp: Don't execute C++ tests on m6811/m6812 targets.
Index: lib/gdb.exp
===================================================================
RCS file: /cvs/src/src/gdb/testsuite/lib/gdb.exp,v
retrieving revision 1.34
diff -u -p -r1.34 gdb.exp
--- lib/gdb.exp	31 Jan 2003 00:38:33 -0000	1.34
+++ lib/gdb.exp	23 Feb 2003 20:53:27 -0000
@@ -1004,6 +1004,12 @@ proc skip_cplus_tests {} {
     if { [istarget "h8300-*-*"] } {
 	return 1
     }
+    if { [istarget "m6811-*-*"] } {
+	return 1
+    }
+    if { [istarget "m6812-*-*"] } {
+	return 1
+    }
     return 0
 }
 

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