From: Hui Zhu <teawater@gmail.com>
To: Yao Qi <yao@codesourcery.com>
Cc: Joel Brobecker <brobecker@adacore.com>,
gdb-patches ml <gdb-patches@sourceware.org>,
Tom Tromey <tromey@redhat.com>
Subject: Re: [PATCH] Add CTF support to GDB [5] Add test for CTF function
Date: Wed, 16 Jan 2013 07:39:00 -0000 [thread overview]
Message-ID: <CANFwon2auJH47FLg8yZPpL6=60db_ZYmbjCEa2_9LfqEDAj2pw@mail.gmail.com> (raw)
In-Reply-To: <50F55E11.40008@codesourcery.com>
[-- Attachment #1: Type: text/plain, Size: 4203 bytes --]
On Tue, Jan 15, 2013 at 9:48 PM, Yao Qi <yao@codesourcery.com> wrote:
> On 01/15/2013 07:18 PM, Hui Zhu wrote:
>>
>> +#Get the pathname of babeltrace and set it to $which_babeltrace.
>> +#If host doesn't have babeltrace, $which_babeltrace will set to 0.
>> +if [is_remote host] then {
>> + remote_exec host "which babeltrace" "" "" "babeltrace.which"
>> + remote_upload host "babeltrace.which"
>> + set which_babeltrace [file_contents "babeltrace.which"]
>
>
> proc file_contents is not defined.
>
> FAIL: gdb.trace/ctf.exp: tsave -ctf ctf.ctf
> ERROR: (DejaGnu) proc "file_contents babeltrace.which" does not exist.
> The error code is NONE
> The info on the error is:
> invalid command name "file_contents"
> while executing
> "::tcl_unknown file_contents babeltrace.which"
> ("uplevel" body line 1)
> invoked from within
> "uplevel 1 ::tcl_unknown $args"
>
> You can run this test case in a remote-host setting in this way,
>
> $ make check RUNTESTFLAGS='--target_board=native-gdbserver
> --host_board=local-remote-host ctf.exp'
I add a file_contents in ctf.exp. Not sure why my part can running
without define "file_contents" inside ctf.exp.
>
>> + remote_file build delete "babeltrace.which"
>> + remote_file host delete "babeltrace.which"
>> +} else {
>> + set which_babeltrace [which babeltrace]
>> +}
>> +
>> +if { $which_babeltrace == 0 } then {
>>
>> + unsupported "babeltrace check ctf directory"
>> +} else {
>> + #Let babeltrace output an error to make sure current way is right.
>> + if [is_remote host] then {
>> + remote_exec host "$which_babeltrace not_exist < /dev/null" "" ""
>> "babeltrace.output"
>> + remote_upload host "babeltrace.output"
>> + set babeltrace_output [file_contents "babeltrace.output"]
>> + remote_file build delete "babeltrace.output"
>> + remote_file host delete "babeltrace.output"
>> + } else {
>> + catch "exec $which_babeltrace not_exist < /dev/null"
>> babeltrace_output
>> + }
>> + if { [string last "\[error\]" $babeltrace_output] == -1 } then {
>>
>> + unsupported "babeltrace check ctf directory"
>> + } else {
>> + if [is_remote host] then {
>> + remote_exec host "$which_babeltrace $ctfdir < /dev/null" "" ""
>> "babeltrace.output"
>> + remote_upload host "babeltrace.output"
>> + set babeltrace_output [file_contents "babeltrace.output"]
>> + remote_file build delete "babeltrace.output"
>> + remote_file host delete "babeltrace.output"
>> + } else {
>> + catch "exec $which_babeltrace $ctfdir < /dev/null"
>> babeltrace_output
>> + }
>> + if { [string last "\[error\]" $babeltrace_output] != -1 } then {
>>
>> + fail "babeltrace open ctf directory"
>> + }
>> + }
>> +}
>> +
>
>
> These code looks overkill to me. What we want to do here is to run
> babeltrace on host. Maybe we can do something simpler,
>
> remote_exec host "babeltrace $ctfdir < /dev/null" "" "" "output"
> remote_upload host "output"
> # Then check the content in file "output" to see 1) babeltrace exists, 2)
> the result of execution.
If use test:
make check RUNTESTFLAGS="--target_board=native-gdbserver ctf.exp"
remote_exec host "babeltrace $ctfdir < /dev/null" "" "" "output" will
get error. I think that is why gas_version have "if [is_remote host]"
for that.
>
>> +
>> +#Test "target ctf"
>> +gdb_test_no_output "set confirm off"
>> +gdb_test_no_output "kill"
>> +gdb_test_multiple "target ctf $ctfdir" "" {
>> + -re "Undefined target command: \"ctf ctf\.ctf\"\. Try \"help
>> target\"\." {
>> + unsupported "target does not support ctf"
>> + remote_exec host "rm -rf $ctfdir"
>> + return -1;
>> + }
>> + -re ".*fail.*" {
>> + fail "target ctf $ctfdir"
>> + }
>> + -re "^$" {
>> + pass "target ctf $ctfdir"
>> + }
>> +}
>
>
> Please add ".*\r\n$gdb_prompt $" at the end of each pattern to be matched to
> avoid racing.
Fixed.
>
> --
> Yao (齐尧)
Post a new version.
Thanks,
Hui
[-- Attachment #2: ctf-test.txt --]
[-- Type: text/plain, Size: 6966 bytes --]
--- a/testsuite/gdb.trace/Makefile.in
+++ b/testsuite/gdb.trace/Makefile.in
@@ -3,7 +3,7 @@ srcdir = @srcdir@
.PHONY: all clean mostlyclean distclean realclean
-PROGS = ax backtrace deltrace disconnected-tracing infotrace packetlen \
+PROGS = ax backtrace ctf deltrace disconnected-tracing infotrace packetlen \
passc-dyn passcount report save-trace tfile tfind tracecmd tsv \
unavailable while-dyn while-stepping
--- /dev/null
+++ b/testsuite/gdb.trace/ctf.c
@@ -0,0 +1,48 @@
+/* CTF test program.
+
+ Copyright (C) 2013 Free Software Foundation, Inc.
+
+ This file is part of GDB.
+
+ 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/>. */
+
+typedef char test_t1;
+typedef test_t1 test_t2;
+typedef test_t2 test_t3;
+
+int
+main ()
+{
+ int i;
+ int a = 0;
+ test_t3 b = 1;
+ test_t3 c[][4] = {"123", "456", "789", "123", "456", "789"};
+ struct
+ {
+ int a;
+ int b;
+ } d[2][2] = {{{1, 2}, {3, 4}}, {{5, 6}, {7, 8}}};
+
+ for (i = 0; i < 10; i++)
+ {
+ ++a; /* set tracepoint 1 here */
+ ++b; /* set tracepoint 2 here */
+ ++c[0][1];
+ ++d[0][1].a;
+ }
+
+ /* set breakpoint end here */
+
+ return 0;
+}
--- /dev/null
+++ b/testsuite/gdb.trace/ctf.exp
@@ -0,0 +1,147 @@
+# Copyright 2013 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/>.
+
+load_lib "trace-support.exp";
+
+proc file_contents { filename } {
+ set file [open $filename r]
+ set contents [read $file]
+ close $file
+ return $contents
+}
+
+standard_testfile
+set executable $testfile
+set expfile $testfile.exp
+set ctfdir $testfile.ctf
+
+if [prepare_for_testing $expfile $executable $srcfile \
+ {debug nowarnings}] {
+ untested "failed to prepare for trace tests"
+ return -1
+}
+
+if ![runto_main] {
+ fail "can't run to main to check for trace support"
+ return -1
+}
+
+if ![gdb_target_supports_trace] {
+ unsupported "target does not support trace"
+ return -1;
+}
+
+
+#Test "tsave -ctf"
+
+set trace_location1 [gdb_get_line_number "set tracepoint 1 here"]
+gdb_test "trace $trace_location1" "Tracepoint ${decimal} at .*"
+gdb_trace_setactions "set action for line $trace_location1" "" \
+ "collect \$local" "^$"
+
+set trace_location2 [gdb_get_line_number "set tracepoint 2 here"]
+gdb_test "trace $trace_location2" "Tracepoint ${decimal} at .*"
+gdb_trace_setactions "set action for line $trace_location2" "" \
+ "collect \$reg" "^$"
+
+gdb_test_no_output "tstart"
+
+set break_end [gdb_get_line_number "set breakpoint end here"]
+gdb_test "break $break_end" "Breakpoint ${decimal} at .*"
+
+gdb_test "continue" "Continuing\\.\[ \r\n\]+Breakpoint.*"
+gdb_test_no_output "tstop"
+
+gdb_test "tsave -ctf $ctfdir" "Trace data saved to directory \'$ctfdir\'."
+
+#Get the pathname of babeltrace and set it to $which_babeltrace.
+#If host doesn't have babeltrace, $which_babeltrace will set to 0.
+if [is_remote host] then {
+ remote_exec host "which babeltrace" "" "" "babeltrace.which"
+ remote_upload host "babeltrace.which"
+ set which_babeltrace [file_contents "babeltrace.which"]
+ remote_file build delete "babeltrace.which"
+ remote_file host delete "babeltrace.which"
+} else {
+ set which_babeltrace [which babeltrace]
+}
+
+if { $which_babeltrace == 0 } then {
+ unsupported "babeltrace check ctf directory"
+} else {
+ #Let babeltrace output an error to make sure current way is right.
+ if [is_remote host] then {
+ remote_exec host "$which_babeltrace not_exist < /dev/null" "" "" "babeltrace.output"
+ remote_upload host "babeltrace.output"
+ set babeltrace_output [file_contents "babeltrace.output"]
+ remote_file build delete "babeltrace.output"
+ remote_file host delete "babeltrace.output"
+ } else {
+ catch "exec $which_babeltrace not_exist < /dev/null" babeltrace_output
+ }
+ if { [string last "\[error\]" $babeltrace_output] == -1 } then {
+ unsupported "babeltrace check ctf directory"
+ } else {
+ if [is_remote host] then {
+ remote_exec host "$which_babeltrace $ctfdir < /dev/null" "" "" "babeltrace.output"
+ remote_upload host "babeltrace.output"
+ set babeltrace_output [file_contents "babeltrace.output"]
+ remote_file build delete "babeltrace.output"
+ remote_file host delete "babeltrace.output"
+ } else {
+ catch "exec $which_babeltrace $ctfdir < /dev/null" babeltrace_output
+ }
+ if { [string last "\[error\]" $babeltrace_output] != -1 } then {
+ fail "babeltrace open ctf directory"
+ }
+ }
+}
+
+
+#Test "target ctf"
+gdb_test_no_output "set confirm off"
+gdb_test_no_output "kill"
+gdb_test_multiple "target ctf $ctfdir" "" {
+ -re "Undefined target command: \"ctf ctf\.ctf\"\. Try \"help target\"\.\r\n$gdb_prompt $" {
+ unsupported "target does not support ctf"
+ remote_exec host "rm -rf $ctfdir"
+ return -1;
+ }
+ -re ".*fail.*\r\n$gdb_prompt $" {
+ fail "target ctf $ctfdir"
+ }
+ -re "\r\n$gdb_prompt $" {
+ pass "target ctf $ctfdir"
+ }
+}
+
+gdb_test "tfind 0" ".*Found trace frame 0.*" "target ctf tfind 0"
+gdb_test "tdump" ".*b = 1.*a = 0.*i = 0.*" "first target ctf tdump"
+gdb_test "print \$b" ".* = 1.*" "first target ctf print \$b"
+gdb_test "print \$a" ".* = 0.*" "first target ctf print \$a"
+gdb_test "print \$i" ".* = 0.*" "first target ctf print \$i"
+
+gdb_test "tfind 1" ".*Found trace frame 1.*" "target ctf tfind 1"
+
+gdb_test "tfind 2" ".*Found trace frame 2.*" "target ctf tfind 2"
+gdb_test "tdump" ".*b = 2.*a = 1.*i = 1.*" "second target ctf tdump"
+gdb_test "print \$b" ".* = 2.*" "second target ctf print \$b"
+gdb_test "print \$a" ".* = 1.*" "second target ctf print \$a"
+gdb_test "print \$i" ".* = 1.*" "second target ctf print \$i"
+
+
+#Clean
+
+remote_exec host "rm -rf $ctfdir"
next prev parent reply other threads:[~2013-01-16 7:39 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-01-14 3:49 Hui Zhu
2013-01-14 12:44 ` Yao Qi
2013-01-15 11:19 ` Hui Zhu
2013-01-15 13:49 ` Yao Qi
2013-01-16 7:39 ` Hui Zhu [this message]
2013-01-16 9:52 ` Yao Qi
2013-01-18 1:23 ` Hui Zhu
2013-01-18 2:07 ` Yao Qi
2013-01-18 15:28 ` Tom Tromey
2013-01-25 11:10 ` Hui Zhu
2013-02-11 12:55 ` Hui Zhu
2013-02-18 10:39 ` Yao Qi
2013-02-19 6:57 ` Hui Zhu
2013-01-14 13:30 ` Joel Brobecker
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='CANFwon2auJH47FLg8yZPpL6=60db_ZYmbjCEa2_9LfqEDAj2pw@mail.gmail.com' \
--to=teawater@gmail.com \
--cc=brobecker@adacore.com \
--cc=gdb-patches@sourceware.org \
--cc=tromey@redhat.com \
--cc=yao@codesourcery.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