2003-03-03 David Carlton <carlton@math.stanford.edu>
authorDavid Carlton <carlton@bactrian.org>
Mon, 3 Mar 2003 18:39:47 +0000 (18:39 +0000)
committerDavid Carlton <carlton@bactrian.org>
Mon, 3 Mar 2003 18:39:47 +0000 (18:39 +0000)
* gdb.c++/templates.exp (do_tests): Convert the KFAILs with
respect to PR c++/33 into FAILs.

gdb/testsuite/ChangeLog
gdb/testsuite/gdb.c++/templates.exp

index 0c80e3022908c0c169dfa80cf81841b0f012756e..21c071df8cb3012cc1e26aa290b20ea52de8029c 100644 (file)
@@ -1,3 +1,8 @@
+2003-03-03  David Carlton  <carlton@math.stanford.edu>
+
+       * gdb.c++/templates.exp (do_tests): Convert the KFAILs with
+       respect to PR c++/33 into FAILs.
+
 2003-03-03  Michael Chastain  <mec@shout.net>
 
        * configure.in: Update copyright years.
index 3ae9891942e386d0495cc626c2662f1c0cd59a3c..7ef1c1d7f721fe74156ef7ba20d5bce6e2c57676 100644 (file)
@@ -303,7 +303,10 @@ send_gdb "print Foo<volatile char *>::foo\n"
 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 @@ send_gdb "print Foo<volatile char*>::foo\n"
 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" }
 }
This page took 0.031715 seconds and 4 git commands to generate.