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]

[patch] remove KFAILs corresponding to gdb/33


Now that PR gdb/33 is fixed, I'm converting the KFAIL branches
corresponding to it in the testsuite into FAILs.  That way, if the
problem rears its head again, it will be treated as a new failure
instead of a known failure.

David Carlton
carlton at math dot stanford dot edu

2003-03-03  David Carlton  <carlton at math dot stanford dot edu>

	* gdb.c++/templates.exp (do_tests): Convert the KFAILs with
	respect to PR c++/33 into FAILs.

===================================================================
RCS file: /cvs/src/src/gdb/testsuite/gdb.c++/templates.exp,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- src/gdb/testsuite/gdb.c++/templates.exp	2003/02/28 17:50:16	1.16
+++ src/gdb/testsuite/gdb.c++/templates.exp	2003/03/03 18:39:47	1.17
@@ -303,7 +303,10 @@
 gdb_expect {   
     -re "\\$\[0-9\]* = \\{.*char \\*\\((class |)Foo<volatile char ?\\*> \\*(| const), int, .*char \\*\\)\\} $hex <Foo<.*char.*\\*>::foo\\(int, .*char.*\\*\\)>\r\n$gdb_prompt $" { pass "print Foo<volatile char *>::foo" }
     -re "No symbol \"Foo<volatile char \\*>\" in current context.\r\n$gdb_prompt $"
-    { kfail "gdb/33" "print Foo<volatile char *>::foo" }
+    {
+	# This used to be a kfail gdb/33, but it shouldn't occur any more now.
+	fail "print Foo<volatile char *>::foo"
+    }
     -re "$gdb_prompt $"                     { fail "print Foo<volatile char *>::foo" }
     timeout                             { fail "(timeout) print Foo<volatile char *>::foo" }
 }
@@ -312,7 +315,10 @@
 gdb_expect {   
     -re "\\$\[0-9\]* = \\{.*char \\*\\((class |)Foo<volatile char ?\\*> \\*(| const), int, .*char \\*\\)\\} $hex <Foo<.*char.*\\*>::foo\\(int, .*char.*\\*\\)>\r\n$gdb_prompt $" { pass "print Foo<volatile char*>::foo" }
     -re "No symbol \"Foo<volatile char\\*>\" in current context.\r\n$gdb_prompt $"
-    { kfail "gdb/33" "print Foo<volatile char*>::foo" }
+    {
+	# This used to be a kfail gdb/33, but it shouldn't occur any more now.
+	fail "print Foo<volatile char *>::foo"
+    }
     -re "$gdb_prompt $"                     { fail "print Foo<volatile char*>::foo" }
     timeout                             { fail "(timeout) print Foo<volatile char*>::foo" }
 }


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