This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [PATCH] add -s option to make -break-insert support dprintf


On Tue, Apr 16, 2013 at 12:23 AM, Pedro Alves <palves@redhat.com> wrote:
> On 04/15/2013 03:57 PM, Hui Zhu wrote:
>> On Fri, Apr 12, 2013 at 7:34 PM, Pedro Alves <palves@redhat.com> wrote:
>>> On 04/12/2013 11:38 AM, Hui Zhu wrote:
>>>>>>
>>>>>> I still get:
>>>>>>
>>>>>> $ make check gdbserver RUNTESTFLAGS="--target_board=native-gdbserver mi-dprintf.exp"
>>>> This part is really odd.
>>>> In my part, without "sleep 1" will random get fail with "Set dprintf
>>>> style to agent ".
>>>> The reason of fail is test try to check the output before it call
>>>> send_gdb "set dprintf-style agent\n".
>>>> This is why I add a "sleep 1" for it.
>>>>
>>>> But looks it still not OK in your part, so I change it to:
>>>> mi_gdb_test "pwd" ".*"
>>>>
>>>> If it is still not OK in your part, I suggest remove this part of test
>>>> because it is not very important for this test.   The "set
>>>> dprintf-style agent" is tested in "dprintf.exp".
>>>>
>>>
>>> No, it's not okay.  And it's not okay to just sweep it under the rug.
>>>
>>> I believe the problem is that the test is sending CLI resumption commands:
>>>
>>> +       mi_gdb_test "continue" ".*At foo entry.*arg=1234, g=1234.*" "mi 1st dprintf"
>>> +       mi_gdb_test "continue" ".*At foo entry.*arg=1235, g=2222.*" "mi 2nd dprintf"
>>>
>>> "continue" sent from MI causes two prompts to appear:
>>>
>>> (gdb)
>>> continue
>>> &"continue\n"
>>> ~"Continuing.\n"
>>> ^running
>>> *running,thread-id="all"
>>> (gdb)
>>> =breakpoint-modified,bkpt={number="6",type="breakpoint",disp="keep",enabled="y",addr="0x000000000045a3ff",func="main",file="../../src/gdb/gdb.c",fullname="/home/pedro/gdb/mygit/src/gdb/gdb.c",line="32",thread-groups=["i1"],times="1",original-location="/home/pedro/gdb/mygit/src/gdb/gdb.c:32"}
>>> ~"\nBreakpoint "
>>> ~"6, main (argc=1, argv=0x7fffffffdc58) at ../../src/gdb/gdb.c:32\n"
>>> ~"32\t  args.use_windows = 0;\n"
>>> *stopped,reason="breakpoint-hit",disp="keep",bkptno="6",frame={addr="0x000000000045a3ff",func="main",args=[{name="argc",value="1"},{name="argv",value="0x7fffffffdc58"}],file="../../src/gdb/gdb.c",fullname="/home/pedro/gdb/mygit/src/gdb/gdb.c",line="32"},thread-id="1",stopped-threads="all",core="0"
>>> (gdb)
>>>
>>> and that is confusing the test (the regex for the prompt is probably stopping
>>> at the first prompt sometimes).
>>>
>>> The test should be adjusted to do MI -exec-continue instead, with
>>> mi_execute_to "exec-continue", mi_send_resuming_command "exec-continue"
>>> or something like that.
>>>
>>> BTW, you don't need to use gdbserver to trigger the issue.  Native
>>> works too.  E.g., leave this running, and eventually, it should FAIL
>>> and stop:
>>>
>>> $ (set -e; while true; do make check RUNTESTFLAGS="mi-dprintf.exp"; done)
>>>
>>> gdb/contrib/expect-read1.sh probably makes this reproducible all
>>> the time, though I haven't tried.
>>
>>
>> Post a new version change the continue to mi_run_cmd, gdb_expect and
>> mi_send_resuming_command.
>> It works OK with loop test.
>
> $ (set -e; while true; do make check RUNTESTFLAGS="mi-dprintf.exp"; done)
> ...
> Running ../../../src/gdb/testsuite/gdb.mi/mi-dprintf.exp ...
> FAIL: gdb.mi/mi-dprintf.exp: gdb: mi 1st dprintf stop (timeout)
> FAIL: gdb.mi/mi-dprintf.exp: mi 1st dprintf, agent
> FAIL: gdb.mi/mi-dprintf.exp: mi 2nd dprintf, agent
> FAIL: gdb.mi/mi-dprintf.exp: mi info dprintf second time
>
> Did you try gdb/contrib/expect-read1.sh ?


What I did is:
EXPECT=../contrib/expect-read1.sh make check RUNTESTFLAGS="mi-dprintf.exp"
EXPECT=../contrib/expect-read1.sh make check
RUNTESTFLAGS="--target_board=native-gdbserver mi-dprintf.exp"

And it is OK in my part.  I did something wrong?

Thanks,
Hui



>
> --
> Pedro Alves
>


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]