mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-04 02:18:37 +00:00
on various platforms:
* In all gdbserver_tests using gdb:
Made a more general way to remove the initial start message.
* tests using threads burning cpu modified to have only 1 thread.
This makes them independent of the scheduler fairness.
* filter_gdb and filter_vgdb enhanced to anonymise
some debian 6.0/ppc specific things
some s390x/gdb 7.0, gdb 7.1 specific things
* vgdb.c: added an #include <linux/ptrace.h> to fix compilation
on s390x fedora and suse. (Christian Boerntrager)
* fixed a bug in valgrind-low.c debug log :
when a register size is 0, its image cannot be output (and register
should not be transferred).
* added a parameter --keep-unfiltered to vg_regtest.in
This will make it easier to update filter_gdb:
in case gdbserver_tests are failing due to "artificial"
differences to be filtered, re-run the tests using:
perl tests/vg_regtest --keep-unfiltered gdbserver_tests
Then a tar file with all the *.out in gdbserver_tests
will allow me to better/faster update the filter_gdb.
* made a better detection of a working PTRACE_GETREGS at compile time
and/or at run-time.
This is the patch on bug 214909 comment 69.
(Philippe Waroquiers, philippe.waroquiers@skynet.be)
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@11740
32 lines
1.1 KiB
Plaintext
32 lines
1.1 KiB
Plaintext
Breakpoint 1 at 0x........: file watchpoints.c, line 7.
|
|
Continuing.
|
|
Breakpoint 1, breakme (line=19) at watchpoints.c:7
|
|
7 fprintf(stderr, "breakme function called from line %d\n", line);
|
|
Hardware read watchpoint 2: undefined[0]
|
|
Hardware access (read/write) watchpoint 3: undefined[4]
|
|
Hardware watchpoint 4: undefined[8]
|
|
Continuing.
|
|
Hardware read watchpoint 2: undefined[0]
|
|
Value = 117 'u'
|
|
main (argc=1, argv=0x........) at watchpoints.c:23
|
|
23 if (undefined[0] == 'u')
|
|
Continuing.
|
|
Hardware access (read/write) watchpoint 3: undefined[4]
|
|
Value = 102 'f'
|
|
main (argc=1, argv=0x........) at watchpoints.c:28
|
|
28 if (undefined[4] == 'f')
|
|
Continuing.
|
|
Hardware access (read/write) watchpoint 3: undefined[4]
|
|
Old value = 102 'f'
|
|
New value = 70 'F'
|
|
main (argc=1, argv=0x........) at watchpoints.c:46
|
|
46 fprintf(stderr, "before writing 8\n");
|
|
Continuing.
|
|
Hardware watchpoint 4: undefined[8]
|
|
Old value = 100 'd'
|
|
New value = 68 'D'
|
|
main (argc=1, argv=0x........) at watchpoints.c:49
|
|
49 fprintf(stderr, "after writing 8\n");
|
|
Delete all breakpoints? (y or n) [answered Y; input not from terminal]
|
|
Continuing.
|