Fix and XFAIL test due to GCC PR55641, passes with clang
authorDavid Blaikie <dblaikie@gmail.com>
Sun, 13 Apr 2014 07:38:47 +0000 (00:38 -0700)
committerDavid Blaikie <dblaikie@gmail.com>
Thu, 24 Apr 2014 20:22:10 +0000 (13:22 -0700)
gdb/testsuite/
* gdb.python/lib-types.exp: Fix test and xfail under gcc due to gcc/55641.

gdb/testsuite/ChangeLog
gdb/testsuite/gdb.python/lib-types.exp

index a910f5532274c77f3ff58d7994bb0c9a7c4a4258..3c73010235941ce40d38842025628ea0b91888da 100644 (file)
@@ -1,3 +1,7 @@
+2014-04-24  David Blaikie  <dblaikie@gmail.com>
+
+       * gdb.python/lib-types.exp: Fix test and xfail under gcc due to gcc/55641.
+
 2014-04-24  David Blaikie  <dblaikie@gmail.com>
 
        * gdb.cp/cpexprs.cc: Move braces to the same line as the start
index 8b9ff34f80a1b5a20a55d55d124991bb28973f02..fa27e60e0820b3881da6354a0e6e70e90d801e00 100644 (file)
@@ -103,7 +103,8 @@ gdb_test_multiple "python print (str (basic_type_typedef_const_typedef_class1_ob
 # test nested typedef/reference stripping
 gdb_test_no_output "python typedef_const_typedef_class1_ref_obj = gdb.parse_and_eval ('typedef_const_typedef_class1_ref_obj')"
 gdb_test_no_output "python basic_type_typedef_const_typedef_class1_ref_obj = gdb.types.get_basic_type (typedef_const_typedef_class1_ref_obj.type)"
-gdb_test "python print (str (typedef_const_typedef_class1_ref_obj.type))" "const typedef_const_typedef_class1_ref"
+if {[test_compiler_info {gcc-*-*}]} { setup_xfail gcc/55641 *-*-* }
+gdb_test "python print (str (typedef_const_typedef_class1_ref_obj.type))" "\[\r\n\]+typedef_const_typedef_class1_ref"
 set test "nested typedef/ref stripping"
 gdb_test_multiple "python print (str (basic_type_typedef_const_typedef_class1_ref_obj))" $test {
     -re "\[\r\n\]+class1\[\r\n\]+$gdb_prompt $" {