summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPedro Alves <palves@redhat.com>2016-01-06 11:31:52 +0000
committerPedro Alves <palves@redhat.com>2016-01-06 11:31:52 +0000
commit79bc59cb349fdbb8d3fa81804eb121af3c340c22 (patch)
tree7fd230fe4c3e0c707586facbf89bfb9bcbe6add0
parent68477034727ad85aeed248ec995da746f7639e53 (diff)
downloadbinutils-gdb-79bc59cb349fdbb8d3fa81804eb121af3c340c22.tar.gz
Fix gdb.python/py-infthread.exp test message typo
gdb/testsuite/ChangeLog: 2016-01-06 Pedro Alves <palves@redhat.com> * gdb.python/py-infthread.exp: Fix typo. Expect t0.num to be 1.
-rw-r--r--gdb/testsuite/ChangeLog4
-rw-r--r--gdb/testsuite/gdb.python/py-infthread.exp2
2 files changed, 5 insertions, 1 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog
index 45a6c6a5793..959b85bc8f0 100644
--- a/gdb/testsuite/ChangeLog
+++ b/gdb/testsuite/ChangeLog
@@ -1,3 +1,7 @@
+2016-01-06 Pedro Alves <palves@redhat.com>
+
+ * gdb.python/py-infthread.exp: Fix typo. Expect t0.num to be 1.
+
2016-01-04 Markus Metzger <markus.t.metzger@intel.com>
* gdb.btrace/dlopen.exp: New.
diff --git a/gdb/testsuite/gdb.python/py-infthread.exp b/gdb/testsuite/gdb.python/py-infthread.exp
index 91cc4c2150a..6e02d023e59 100644
--- a/gdb/testsuite/gdb.python/py-infthread.exp
+++ b/gdb/testsuite/gdb.python/py-infthread.exp
@@ -41,7 +41,7 @@ if ![runto_main] then {
gdb_py_test_silent_cmd "python t0 = gdb.selected_thread ()" "test gdb.selected_thread" 1
gdb_test "python print (t0)" "\\<gdb.InferiorThread object at 0x\[\[:xdigit:\]\]+>" "verify InferiorThread object"
-gdb_test "python print ('result = %s' % t0.num)" " = \[0-9\]+" "test Inferior.num"
+gdb_test "python print ('result = %s' % t0.num)" " = 1" "test InferiorThread.num"
gdb_test "python print ('result = %s' % str (t0.ptid))" " = \\(\[0-9\]+, \[0-9\]+, \[0-9\]+\\)" "test InferiorThread.ptid"
gdb_py_test_silent_cmd "python name = gdb.selected_thread().name" \