From: Pedro Alves Date: Wed, 6 Jan 2016 11:31:52 +0000 (+0000) Subject: Fix gdb.python/py-infthread.exp test message typo X-Git-Tag: gdb-7.11-release~341 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=79bc59cb349fdbb8d3fa81804eb121af3c340c22;p=external%2Fbinutils.git Fix gdb.python/py-infthread.exp test message typo gdb/testsuite/ChangeLog: 2016-01-06 Pedro Alves * gdb.python/py-infthread.exp: Fix typo. Expect t0.num to be 1. --- diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index 45a6c6a..959b85b 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2016-01-06 Pedro Alves + + * gdb.python/py-infthread.exp: Fix typo. Expect t0.num to be 1. + 2016-01-04 Markus Metzger * gdb.btrace/dlopen.exp: New. diff --git a/gdb/testsuite/gdb.python/py-infthread.exp b/gdb/testsuite/gdb.python/py-infthread.exp index 91cc4c2..6e02d02 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)" "\\" "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" \