~ubuntu-branches/debian/experimental/gdb/experimental

« back to all changes in this revision

Viewing changes to gdb/testsuite/gdb.python/py-sync-interp.exp

  • Committer: Package Import Robot
  • Author(s): Hector Oron
  • Date: 2014-11-09 16:29:31 UTC
  • mfrom: (1.2.14)
  • Revision ID: package-import@ubuntu.com-20141109162931-1q6gwbm2lbkap9k3
Tags: 7.8.1-1
* Imported Upstream version 7.8.1
  - GDB 7.8.1 provides the following fixes and improvements over GDB 7.8:
    + PR python/17364 (Need better printer names in bound_registers.py)
    + PR build/17104 (CFLAGS="-Wall -Wextra" gdb/confgure --with-babeltrace
      fails)
    + PR gdb/17345 (babeltrace (1.1.2 and later) complains about the ctf
      data generated by GDB)
    + PR build/17298 (gcore: Couldn't get registers: No such process)
    + PR python/17342 (Xmethod Python is not Python 3 compatible)
    + PR python/17355 (Crash on Python frame filters with unreadable arg)
    + PR guile/17367 (computation of guild path wrong when pkg-config script
      supplied as arg to --with-guile)
    + PR gdb/17247 (gdb freezes on multi threaded app)
    + PR gdb/17347 (Regression: GDB stopped on run with attached process)
    + PR gdb/17407 (Regression for Linux vDSO reading)
    + PR server/17457 (aarch64/gdbserver: wrong floating point registers
      display)
    + PR server/17487 (state->dr_control_mirror == 0 failed assertion in
      gdbserver on Windows)
    + PR gdb/17472 (with annotations, input while executing in the foreground
      crashes readline/gdb)
    + PR gdb/17471 (repeating a background command makes it foreground)
    + PR cli/17300 (crash in non-stop mode with continue -a &
      (readline_callback_read_char() called with no handler!))
    + PR python/17372 (python hangs when displaying help())
    + PR python/17408 (../../gdb/infrun.c:5256: internal-error:
      switch_back_to_stepped_thread: Assertion `!schedlock_applies(1)'
      failed.)
  - Fix --batch mode parameter
    (Closes: #763518)
* d/control*:
  - Bump Standars Version stanza, no changes needed.
  - -dbg depends on main binary version.
* d/rules: fix FTBFS caused by dpkg 1.17.17 changes.
  (Closes: #766754)

Show diffs side-by-side

added added

removed removed

Lines of Context:
41
41
    return -1
42
42
}
43
43
 
44
 
# Start the program running and then wait for a bit, to be sure
45
 
# that it can be attached to.
46
 
set testpid [eval exec $binfile &]
47
 
exec sleep 2
48
 
if { [istarget "*-*-cygwin*"] } {
49
 
    # testpid is the Cygwin PID, GDB uses the Windows PID, which might be
50
 
    # different due to the way fork/exec works.
51
 
    set testpid [ exec ps -e | gawk "{ if (\$1 == $testpid) print \$4; }" ]
52
 
}
 
44
set testpid [spawn_wait_for_attach $binfile]
53
45
 
54
46
# Test command 'where' is executed when command 'attach' is done, otherwise
55
47
# function 'sleep' may not show up in backtrace.