From: Michael Snyder <msnyder@vmware.com>
To: Jan Kratochvil <jan.kratochvil@redhat.com>
Cc: Pedro Alves <pedro@codesourcery.com>,
"gdb-patches@sourceware.org" <gdb-patches@sourceware.org>,
Tom Tromey <tromey@redhat.com>
Subject: Re: [RFC] info threads takes an argument
Date: Thu, 17 Feb 2011 20:11:00 -0000 [thread overview]
Message-ID: <4D5D7AF6.6050106@vmware.com> (raw)
In-Reply-To: <20110217165333.GA29274@host1.dyn.jankratochvil.net>
[-- Attachment #1: Type: text/plain, Size: 1506 bytes --]
Jan Kratochvil wrote:
> On Wed, 16 Feb 2011 19:26:33 +0100, Michael Snyder wrote:
>> Pedro Alves wrote:
>>> Anyway, the reason I'm replying is that I noticed a couple
>>> of new FAILs in this test, and looking at the log, I noticed
>>> another issue:
>> Urk. I did half my work on the 7.2 branch, where it doesn't do this.
>> Let me fix it.
>
> I also see the failure:
>
> info threads 2 4 6
> Id Target Id Frame
> 2 Thread 0x7ffff759e700 (LWP 24773) "threadname_2" 0x00007ffff7678213 in select () at ../sysdeps/unix/syscall-template.S:82
> Id Target Id Frame
> 4 Thread 0x7ffff659c700 (LWP 24775) "threadname_4" 0x00007ffff7678213 in select () at ../sysdeps/unix/syscall-template.S:82
> Id Target Id Frame
> 6 Thread 0x7ffff559a700 (LWP 24777) "threadname_6" __lll_lock_wait () at ../nptl/sysdeps/unix/sysv/linux/x86_64/lowlevellock.S:136
> (gdb) FAIL: gdb.threads/thread-find.exp: info threads 2 4 6
>
> -re ". 6 .*\"threadname_6.*\" \[\r\n\]*" {
> set see6 1
> exp_continue
> }
> -re ". 5 .*\"threadname_5.*\" \[\r\n\]*" {
> set see5 1
> exp_continue
> }
>
> This is racy, * of the regexp is greedy by default and there can be multiple
> threadnames available during a single read/match, one match can swallow
> multiple entries. There should be some \[^\r\n\]* instead of any .* during
> such unanchored matching.
You're right, there is an extra .* in there.
Can you please try the attached?
[-- Attachment #2: thread-find.exp --]
[-- Type: text/plain, Size: 10755 bytes --]
# Copyright 2011
# Free Software Foundation, Inc.
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
# Please email any bugs, comments, and/or additions to this file to:
# bug-gdb@gnu.org
if $tracelevel then {
strace $tracelevel
}
set testfile "linux-dp"
set srcfile ${testfile}.c
set binfile ${objdir}/${subdir}/${testfile}
if {[gdb_compile_pthreads "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != ""} {
return -1
}
gdb_start
gdb_reinitialize_dir $srcdir/$subdir
gdb_load ${binfile}
gdb_test_no_output "set print sevenbit-strings"
runto_main
# Run until there are some threads.
gdb_breakpoint [gdb_get_line_number "linuxthreads.exp: info threads 2"]
gdb_continue_to_breakpoint "main thread's sleep"
# Create thread names.
gdb_test "thread apply 1 thread name threadname_1" \
"Thread 1 .*" \
"name thread 1"
gdb_test "thread apply 2 thread name threadname_2" \
"Thread 2 .*" \
"name thread 2"
gdb_test "thread apply 3 thread name threadname_3" \
"Thread 3 .*" \
"name thread 3"
gdb_test "thread apply 4 thread name threadname_4" \
"Thread 4 .*" \
"name thread 4"
gdb_test "thread apply 5 thread name threadname_5" \
"Thread 5 .*" \
"name thread 5"
gdb_test "thread apply 6 thread name threadname_6" \
"Thread 6 .*" \
"name thread 6"
# Collect thread ids, if any.
gdb_test_multiple "info threads" "collect thread id" {
-re ". 6 .*\[Tt\]hread (\[0-9a-fA-Fx\]+).* \"threadname_6\" \[^\r\n\]*" {
set thread6 $expect_out(1,string)
exp_continue
}
-re ". 5 .*\[Tt\]hread (\[0-9a-fA-Fx\]+).* \"threadname_5\" \[^\r\n\]*" {
set thread5 $expect_out(1,string)
exp_continue
}
-re ". 4 .*\[Tt\]hread (\[0-9a-fA-Fx\]+).* \"threadname_4\" \[^\r\n\]*" {
set thread4 $expect_out(1,string)
exp_continue
}
-re ". 3 .*\[Tt\]hread (\[0-9a-fA-Fx\]+).* \"threadname_3\" \[^\r\n\]*" {
set thread3 $expect_out(1,string)
exp_continue
}
-re ". 2 .*\[Tt\]hread (\[0-9a-fA-Fx\]+).* \"threadname_2\" \[^\r\n\]*" {
set thread2 $expect_out(1,string)
exp_continue
}
-re ". 1 .*\[Tt\]hread (\[0-9a-fA-Fx\]+).* \"threadname_1\" \[^\r\n\]*" {
set thread1 $expect_out(1,string)
exp_continue
}
-re ".*$gdb_prompt $" {
pass "collect thread id"
}
}
if { [info exists thread6] } then {
gdb_test "echo $thread6\\n" "$thread6" "got thread ids"
}
# Collect process ids, if any.
gdb_test_multiple "info threads" "collect thread id" {
-re ". 6 .*\[Pp\]rocess (\[0-9a-fA-Fx\]+).* \"threadname_6\" \[^\r\n\]*" {
set process6 $expect_out(1,string)
exp_continue
}
-re ". 5 .*\[Pp\]rocess (\[0-9a-fA-Fx\]+).* \"threadname_5\" \[^\r\n\]*" {
set process5 $expect_out(1,string)
exp_continue
}
-re ". 4 .*\[Pp\]rocess (\[0-9a-fA-Fx\]+).* \"threadname_4\" \[^\r\n\]*" {
set process4 $expect_out(1,string)
exp_continue
}
-re ". 3 .*\[Pp\]rocess (\[0-9a-fA-Fx\]+).* \"threadname_3\" \[^\r\n\]*" {
set process3 $expect_out(1,string)
exp_continue
}
-re ". 2 .*\[Pp\]rocess (\[0-9a-fA-Fx\]+).* \"threadname_2\" \[^\r\n\]*" {
set process2 $expect_out(1,string)
exp_continue
}
-re ". 1 .*\[Pp\]rocess (\[0-9a-fA-Fx\]+).* \"threadname_1\" \[^\r\n\]*" {
set process1 $expect_out(1,string)
exp_continue
}
-re ".*$gdb_prompt $" {
pass "collect process id"
}
}
if { [info exists process6] } then {
gdb_test "echo $process6\\n" "$process6" "got process ids"
}
# Collect lwp ids, if any.
gdb_test_multiple "info threads" "collect thread id" {
-re ". 6 .*LWP (\[0-9a-fA-Fx\]+).* \"threadname_6\" \[^\r\n\]*" {
set lwp6 $expect_out(1,string)
exp_continue
}
-re ". 5 .*LWP (\[0-9a-fA-Fx\]+).* \"threadname_5\" \[^\r\n\]*" {
set lwp5 $expect_out(1,string)
exp_continue
}
-re ". 4 .*LWP (\[0-9a-fA-Fx\]+).* \"threadname_4\" \[^\r\n\]*" {
set lwp4 $expect_out(1,string)
exp_continue
}
-re ". 3 .*LWP (\[0-9a-fA-Fx\]+).* \"threadname_3\" \[^\r\n\]*" {
set lwp3 $expect_out(1,string)
exp_continue
}
-re ". 2 .*LWP (\[0-9a-fA-Fx\]+).* \"threadname_2\" \[^\r\n\]*" {
set lwp2 $expect_out(1,string)
exp_continue
}
-re ". 1 .*LWP (\[0-9a-fA-Fx\]+).* \"threadname_1\" \[^\r\n\]*" {
set lwp1 $expect_out(1,string)
exp_continue
}
-re ".*$gdb_prompt $" {
pass "collect lwp id"
}
}
if { [info exists lwp6] } then {
gdb_test "echo $lwp6\\n" "$lwp6" "got lwp ids"
}
#
# Now: test 'thread find' with names.
#
gdb_test "thread find threadname_6" \
"Thread 6 has name 'threadname_6'" "find thread name 6"
gdb_test "thread find threadname_5" \
"Thread 5 has name 'threadname_5'" "find thread name 5"
gdb_test "thread find threadname_4" \
"Thread 4 has name 'threadname_4'" "find thread name 4"
gdb_test "thread find threadname_3" \
"Thread 3 has name 'threadname_3'" "find thread name 3"
gdb_test "thread find threadname_2" \
"Thread 2 has name 'threadname_2'" "find thread name 2"
gdb_test "thread find threadname_1" \
"Thread 1 has name 'threadname_1'" "find thread name 1"
#
# Test 'thread find' with thread ids, if any.
#
if { [info exists thread6] } then {
gdb_test "thread find $thread6" \
"Thread 6 has .*$thread6.*" "find thread id 6"
gdb_test "thread find $thread5" \
"Thread 5 has .*$thread5.*" "find thread id 5"
gdb_test "thread find $thread4" \
"Thread 4 has .*$thread4.*" "find thread id 4"
gdb_test "thread find $thread3" \
"Thread 3 has .*$thread3.*" "find thread id 3"
gdb_test "thread find $thread2" \
"Thread 2 has .*$thread2.*" "find thread id 2"
gdb_test "thread find $thread1" \
"Thread 1 has .*$thread1.*" "find thread id 1"
}
#
# Test 'thread find' with process ids, if any.
#
if { [info exists process6] } then {
gdb_test "thread find $process6" \
"Thread 6 has .*$process6.*" "find process id 6"
gdb_test "thread find $process5" \
"Thread 5 has .*$process5.*" "find process id 5"
gdb_test "thread find $process4" \
"Thread 4 has .*$process4.*" "find process id 4"
gdb_test "thread find $process3" \
"Thread 3 has .*$process3.*" "find process id 3"
gdb_test "thread find $process2" \
"Thread 2 has .*$process2.*" "find process id 2"
gdb_test "thread find $process1" \
"Thread 1 has .*$process1.*" "find process id 1"
}
#
# Test 'thread find' with lwp ids, if any.
#
if { [info exists lwp6] } then {
gdb_test "thread find $lwp6" \
"Thread 6 has .*$lwp6.*" "find lwp id 6"
gdb_test "thread find $lwp5" \
"Thread 5 has .*$lwp5.*" "find lwp id 5"
gdb_test "thread find $lwp4" \
"Thread 4 has .*$lwp4.*" "find lwp id 4"
gdb_test "thread find $lwp3" \
"Thread 3 has .*$lwp3.*" "find lwp id 3"
gdb_test "thread find $lwp2" \
"Thread 2 has .*$lwp2.*" "find lwp id 2"
gdb_test "thread find $lwp1" \
"Thread 1 has .*$lwp1.*" "find lwp id 1"
}
# Test no match.
gdb_test "thread find foobarbaz" "No threads match .*" "no thread"
#
# Test regular expression
#
set see1 0
set see2 0
set see3 0
set see4 0
set see5 0
set see6 0
gdb_test_multiple "thread find threadname_\[345\]" "test regular exp" {
-re "Thread 6 has name \[^\r\n\]*" {
set see6 1
exp_continue
}
-re "Thread 5 has name \[^\r\n\]*" {
set see5 1
exp_continue
}
-re "Thread 4 has name \[^\r\n\]*" {
set see4 1
exp_continue
}
-re "Thread 3 has name \[^\r\n\]*" {
set see3 1
exp_continue
}
-re "Thread 2 has name \[^\r\n\]*" {
set see2 1
exp_continue
}
-re "Thread 1 has name \[^\r\n\]*" {
set see1 1
exp_continue
}
-re ".*$gdb_prompt $" {
if { $see3 && $see4 && $see5 && !$see1 && !$see2 && !$see6 } then {
pass "test regular exp"
} else {
fail "test regular exp"
}
}
}
#
# Test info threads on a subset of threads
#
set see1 0
set see2 0
set see3 0
set see4 0
set see5 0
set see6 0
gdb_test_multiple "info threads 2 4 6" "info threads 2 4 6" {
-re ". 6 .*\"threadname_6\" \[\r\n\]*" {
set see6 1
exp_continue
}
-re ". 5 .*\"threadname_5\" \[\r\n\]*" {
set see5 1
exp_continue
}
-re ". 4 .*\"threadname_4\" \[\r\n\]*" {
set see4 1
exp_continue
}
-re ". 3 .*\"threadname_3\" \[\r\n\]*" {
set see3 1
exp_continue
}
-re ". 2 .*\"threadname_2\" \[\r\n\]*" {
set see2 1
exp_continue
}
-re ". 1 .*\"threadname_1\" \[\r\n\]*" {
set see1 1
exp_continue
}
-re ".*$gdb_prompt $" {
if { $see2 && $see4 && $see6 && !$see1 && !$see3 && !$see5 } then {
pass "info threads 2 4 6"
} else {
fail "info threads 2 4 6"
}
}
}
#
# Test info threads on a range
#
set see1 0
set see2 0
set see3 0
set see4 0
set see5 0
set see6 0
gdb_test_multiple "info threads 3-5" "info threads 3-5" {
-re ". 6 .*\"threadname_6\" \[\r\n\]*" {
set see6 1
exp_continue
}
-re ". 5 .*\"threadname_5\" \[\r\n\]*" {
set see5 1
exp_continue
}
-re ". 4 .*\"threadname_4\" \[\r\n\]*" {
set see4 1
exp_continue
}
-re ". 3 .*\"threadname_3\" \[\r\n\]*" {
set see3 1
exp_continue
}
-re ". 2 .*\"threadname_2\" \[\r\n\]*" {
set see2 1
exp_continue
}
-re ". 1 .*\"threadname_1\" \[\r\n\]*" {
set see1 1
exp_continue
}
-re ".*$gdb_prompt $" {
if { $see3 && $see4 && $see5 && !$see1 && !$see2 && !$see6 } then {
pass "info threads 3-5"
} else {
fail "info threads 3-5"
}
}
}
# Test inverted range
gdb_test "info threads 5-3" "inverted range" "test inverted range"
# Test degenerate range
set see1 0
set see2 0
set see3 0
set see4 0
set see5 0
set see6 0
gdb_test_multiple "info threads 3-3" "info threads 3-3" {
-re ". 6 .*\"threadname_6\" \[\r\n\]*" {
set see6 1
exp_continue
}
-re ". 5 .*\"threadname_5\" \[\r\n\]*" {
set see5 1
exp_continue
}
-re ". 4 .*\"threadname_4\" \[\r\n\]*" {
set see4 1
exp_continue
}
-re ". 3 .*\"threadname_3\" \[\r\n\]*" {
set see3 1
exp_continue
}
-re ". 2 .*\"threadname_2\" \[\r\n\]*" {
set see2 1
exp_continue
}
-re ". 1 .*\"threadname_1\" \[\r\n\]*" {
set see1 1
exp_continue
}
-re ".*$gdb_prompt $" {
if { $see3 && !$see1 && !$see2 && !$see4 && !$see5 && !$see6 } then {
pass "info threads 3-3"
} else {
fail "info threads 3-3"
}
}
}
next prev parent reply other threads:[~2011-02-17 19:46 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-02-11 1:52 Michael Snyder
2011-02-11 6:09 ` Joel Brobecker
2011-02-11 19:23 ` Michael Snyder
2011-02-11 21:14 ` Tom Tromey
[not found] ` <4D55B1ED.5020808@vmware.com>
[not found] ` <m3k4h2e6xu.fsf@fleche.redhat.com>
2011-02-14 20:03 ` Michael Snyder
2011-02-14 20:40 ` Eli Zaretskii
2011-02-15 19:58 ` Tom Tromey
2011-02-15 21:44 ` Michael Snyder
2011-02-16 11:58 ` Pedro Alves
2011-02-16 18:47 ` Michael Snyder
2011-02-17 16:57 ` Jan Kratochvil
2011-02-17 19:12 ` Michael Snyder
2011-02-17 20:11 ` Michael Snyder [this message]
2011-02-17 21:22 ` Jan Kratochvil
2011-02-21 18:45 ` Tom Tromey
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4D5D7AF6.6050106@vmware.com \
--to=msnyder@vmware.com \
--cc=gdb-patches@sourceware.org \
--cc=jan.kratochvil@redhat.com \
--cc=pedro@codesourcery.com \
--cc=tromey@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox