2010-03-29 Sami Wagiaalla <swagiaal@redhat.com>
authorSami Wagiaalla <swagiaal@redhat.com>
Mon, 29 Mar 2010 20:35:19 +0000 (20:35 +0000)
committerSami Wagiaalla <swagiaal@redhat.com>
Mon, 29 Mar 2010 20:35:19 +0000 (20:35 +0000)
* gdb.cp/nsusing.exp: Marked imported declaration test as xfail with
gcc < 4.4.
* gdb.cp/shadow.exp: Ditto.

gdb/testsuite/ChangeLog
gdb/testsuite/gdb.cp/nsusing.exp
gdb/testsuite/gdb.cp/shadow.exp

index c0bd842453013317cc357cffcd0cf433886e38dd..dcf8c41c9301d4cf00d37ba4bc518a4583c33fa8 100644 (file)
@@ -1,3 +1,9 @@
+2010-03-29  Sami Wagiaalla  <swagiaal@redhat.com>
+
+       * gdb.cp/nsusing.exp: Marked imported declaration test as xfail with
+       gcc < 4.4.
+       * gdb.cp/shadow.exp: Ditto.
+
 2010-03-29  Pedro Alves  <pedro@codesourcery.com>
 
        * gdb.trace/collection.exp (run_trace_experiment): Make sure
index b060ee20f8c423ac22a1e71c5a02b7b40af2ff4f..718b4b8d1831b0be175b5f6c2bb362501bad2b27 100644 (file)
@@ -206,5 +206,10 @@ if ![runto_main] then {
 gdb_breakpoint [gdb_get_line_number "marker10 stop"]
 gdb_continue_to_breakpoint "marker10 stop"
 
+if { [test_compiler_info {gcc-[0-3]-*}] ||
+     [test_compiler_info {gcc-4-[0-3]-*}]} {
+    setup_xfail *-*-* 
+}
+
 # Assert that M::x is printed and not N::x
 gdb_test "print x" "= 911" "print x (from M::x)"
index 40c35a424e8f1ace5c68844af0e722542c6bdb2c..945cf99c0efd9cd9a044bec28a01b113cb40ff54 100644 (file)
@@ -31,6 +31,10 @@ if  { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {deb
     return -1
 }
 
+if [get_compiler_info ${binfile}] {
+    return -1
+}
+
 # Get things started.
 
 gdb_exit
@@ -85,4 +89,9 @@ gdb_test "print x" "= 55" "Print local x not namespace x"
 gdb_breakpoint [gdb_get_line_number "marker5"]
 gdb_continue_to_breakpoint "marker5"
 
+if { [test_compiler_info {gcc-[0-3]-*}] ||
+     [test_compiler_info {gcc-4-[0-3]-*}]} {
+    setup_xfail *-*-*
+}
+
 gdb_test "print x" "= 11" "Print imported namespace x"