gdb/testsuite/
* gdb.python/py-sync-interp.c: New. * gdb.python/py-sync-interp.exp: New.
This commit is contained in:
parent
5c7b0e48a1
commit
67d21849b0
3 changed files with 110 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
2013-08-01 Yao Qi <yao@codesourcery.com>
|
||||
|
||||
* gdb.python/py-sync-interp.c: New.
|
||||
* gdb.python/py-sync-interp.exp: New.
|
||||
|
||||
2013-07-31 Yao Qi <yao@codesourcery.com>
|
||||
|
||||
* gdb.trace/backtrace.exp (gdb_backtrace_tdp_4): Test command
|
||||
|
|
46
gdb/testsuite/gdb.python/py-sync-interp.c
Normal file
46
gdb/testsuite/gdb.python/py-sync-interp.c
Normal file
|
@ -0,0 +1,46 @@
|
|||
/* This testcase is part of GDB, the GNU debugger.
|
||||
|
||||
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/>. */
|
||||
|
||||
/* This program is intended to be started outside of gdb, and then
|
||||
attached to by gdb. It loops for a while, but not forever. */
|
||||
|
||||
#include <unistd.h>
|
||||
|
||||
static void
|
||||
foo1 (void)
|
||||
{
|
||||
sleep (100);
|
||||
}
|
||||
|
||||
static void
|
||||
foo2 (void)
|
||||
{
|
||||
foo1 ();
|
||||
}
|
||||
|
||||
static void
|
||||
foo3 (void)
|
||||
{
|
||||
foo2 ();
|
||||
}
|
||||
|
||||
int
|
||||
main (void)
|
||||
{
|
||||
foo3 ();
|
||||
return 0;
|
||||
}
|
59
gdb/testsuite/gdb.python/py-sync-interp.exp
Normal file
59
gdb/testsuite/gdb.python/py-sync-interp.exp
Normal file
|
@ -0,0 +1,59 @@
|
|||
# Copyright (C) 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/>.
|
||||
|
||||
# This file is part of the GDB testsuite.
|
||||
|
||||
# This test case is copied from PR12929.
|
||||
# http://sourceware.org/bugzilla/show_bug.cgi?id=12929
|
||||
|
||||
standard_testfile
|
||||
|
||||
# We need to use TCL's exec to get the pid.
|
||||
if [is_remote target] then {
|
||||
return 0
|
||||
}
|
||||
|
||||
load_lib gdb-python.exp
|
||||
|
||||
# Start with a fresh gdb.
|
||||
|
||||
gdb_exit
|
||||
gdb_start
|
||||
gdb_reinitialize_dir $srcdir/$subdir
|
||||
|
||||
# Skip all tests if Python scripting is not enabled.
|
||||
if { [skip_python_tests] } { continue }
|
||||
gdb_exit
|
||||
|
||||
if { [prepare_for_testing ${testfile}.exp ${testfile} ${srcfile}] } {
|
||||
return -1
|
||||
}
|
||||
|
||||
# Start the program running and then wait for a bit, to be sure
|
||||
# that it can be attached to.
|
||||
set testpid [eval exec $binfile &]
|
||||
exec sleep 2
|
||||
if { [istarget "*-*-cygwin*"] } {
|
||||
# testpid is the Cygwin PID, GDB uses the Windows PID, which might be
|
||||
# different due to the way fork/exec works.
|
||||
set testpid [ exec ps -e | gawk "{ if (\$1 == $testpid) print \$4; }" ]
|
||||
}
|
||||
|
||||
# Test command 'where' is executed when command 'attach' is done, otherwise
|
||||
# function 'sleep' may not show up in backtrace.
|
||||
|
||||
gdb_test "python gdb.execute(\"attach $testpid\"); gdb.execute(\"where\")" \
|
||||
"in .*sleep \\(.*\\) .* in foo1 \\(\\) at .* in foo2 \\(\\) at .*" \
|
||||
"attach and where"
|
Loading…
Add table
Add a link
Reference in a new issue