2011-02-22 Michael Snyder <msnyder@vmware.com>
authorMichael Snyder <msnyder@vmware.com>
Tue, 22 Feb 2011 18:51:27 +0000 (18:51 +0000)
committerMichael Snyder <msnyder@vmware.com>
Tue, 22 Feb 2011 18:51:27 +0000 (18:51 +0000)
* gdb.threads/thread-find.exp: Add tests for bad input to
info threads.

gdb/testsuite/ChangeLog
gdb/testsuite/gdb.threads/thread-find.exp

index 599a182844175d7a7ac933981bbbbba8694df6d5..6394c5862c3623cfb174078311d8daaadc97dded 100644 (file)
@@ -1,3 +1,8 @@
+2011-02-22  Michael Snyder  <msnyder@vmware.com>
+
+       * gdb.threads/thread-find.exp: Add tests for bad input to 
+       info threads.
+
 2011-02-22  Joel Brobecker  <brobecker@adacore.com>
 
        * gdb.python/py-breakpoint.exp: Fix the expected output of
index 1d8d3162e4be2869992fd4812b1b70a2d937d41f..305cc2c92b638473f9118c1b384fac6a7a329967 100644 (file)
@@ -428,3 +428,12 @@ gdb_test_multiple "info threads 3-3" "info threads 3-3" {
     }
 }
 
+# Test bad input
+
+gdb_test "info thread foo" \
+    "Args must be numbers or '.' variables." \
+    "info thread foo"
+
+gdb_test "info thread foo -1" \
+    "Args must be numbers or '.' variables." \
+    "info thread foo -1"