From: Gary Benson via Gdb-patches <gdb-patches@sourceware.org>
To: Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
Cc: simark@simark.ca, gdb-patches@sourceware.org
Subject: Re: [PATCH v4 0/2] Breakpoint conditions at locations with differing contexts
Date: Wed, 28 Oct 2020 16:57:26 +0000 [thread overview]
Message-ID: <20201028165726.GA20653@blade.nx> (raw)
In-Reply-To: <cover.1602591230.git.tankut.baris.aktemur@intel.com>
Hi Baris,
Tankut Baris Aktemur wrote:
> create mode 100644 gdb/testsuite/gdb.base/condbreak-multi-context.exp
This test fails if you build the test executable with Clang. I've
inlined a full diff of the gdb.log files below, but I think the
issue is that Clang and GCC are writing the code or the debuginfo
in a different order, so where the test expects to see breakpoints
like:
1.1 Base::func()
1.2 A::func()
1.3 C::func()
but what it gets with Clang is:
1.1 A::func()
1.2 Base::func()
1.3 C::func()
Are you able to update the test to handle this?
In case you're not familiar with switching compilers you should be
able to do it by adding CC_FOR_TARGET=clang and CXX_FOR_TARGET=clang++
to your RUNTESTFLAGS, e.g.:
cd /path/to/your/build
export RUNTESTFLAGS="CC_FOR_TARGET=clang CXX_FOR_TARGET=clang++"
make check TESTS=gdb.base/condbreak-multi-context.exp
Cheers,
Gary
--
--- /gdbtest/2020-10-28/with-gcc/gdb/testsuite/outputs/gdb.base/condbreak-multi-context/gdb.log 2020-10-28 15:42:08.465601501 +0000
+++ /gdbtest/2020-10-28/with-clang/gdb/testsuite/outputs/gdb.base/condbreak-multi-context/gdb.log 2020-10-28 15:53:48.394477290 +0000
@@ -1,24 +1,24 @@
-Test run by gdbtest on Wed Oct 28 15:42:04 2020
+Test run by gdbtest on Wed Oct 28 15:53:43 2020
Native configuration is x86_64-pc-linux-gnu
=== gdb tests ===
Schedule of variations:
- gdbtest-with-gcc
+ gdbtest-with-clang
-Running target gdbtest-with-gcc
-Using /gdbtest/gdbtest/boards/gdbtest-with-gcc.exp as board description file for target.
+Running target gdbtest-with-clang
+Using /gdbtest/gdbtest/boards/gdbtest-with-clang.exp as board description file for target.
Using /gdbtest/gdbtest/boards/gdbtest-base.exp as board description file for target.
Using /usr/share/dejagnu/baseboards/unix.exp as board description file for target.
Using /usr/share/dejagnu/config/unix.exp as generic interface file for target.
Using /gdbtest/src/gdb/testsuite/boards/../boards/local-board.exp as board description file for target.
Using /gdbtest/src/gdb/testsuite/config/unix.exp as tool-and-target-specific interface file.
Running /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.exp ...
-get_compiler_info: gcc-10-2-1
-Executing on host: gcc -fno-stack-protector -fdiagnostics-color=never -c -g -o /gdbtest/build/gdb/testsuite/outputs/gdb.base/condbreak-multi-context/condbreak-multi-context0.o /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc (timeout = 300)
-spawn -ignore SIGHUP gcc -fno-stack-protector -fdiagnostics-color=never -c -g -o /gdbtest/build/gdb/testsuite/outputs/gdb.base/condbreak-multi-context/condbreak-multi-context0.o /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc
-Executing on host: gcc -fno-stack-protector /gdbtest/build/gdb/testsuite/outputs/gdb.base/condbreak-multi-context/condbreak-multi-context0.o -fdiagnostics-color=never -g -lm -o /gdbtest/build/gdb/testsuite/outputs/gdb.base/condbreak-multi-context/condbreak-multi-context (timeout = 300)
-spawn -ignore SIGHUP gcc -fno-stack-protector /gdbtest/build/gdb/testsuite/outputs/gdb.base/condbreak-multi-context/condbreak-multi-context0.o -fdiagnostics-color=never -g -lm -o /gdbtest/build/gdb/testsuite/outputs/gdb.base/condbreak-multi-context/condbreak-multi-context
+get_compiler_info: clang-12-0-0
+Executing on host: clang -fdiagnostics-color=never -Wno-unknown-warning-option -c -g -o /gdbtest/build/gdb/testsuite/outputs/gdb.base/condbreak-multi-context/condbreak-multi-context0.o /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc (timeout = 300)
+spawn -ignore SIGHUP clang -fdiagnostics-color=never -Wno-unknown-warning-option -c -g -o /gdbtest/build/gdb/testsuite/outputs/gdb.base/condbreak-multi-context/condbreak-multi-context0.o /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc
+Executing on host: clang /gdbtest/build/gdb/testsuite/outputs/gdb.base/condbreak-multi-context/condbreak-multi-context0.o -fdiagnostics-color=never -Wno-unknown-warning-option -g -lm -o /gdbtest/build/gdb/testsuite/outputs/gdb.base/condbreak-multi-context/condbreak-multi-context (timeout = 300)
+spawn -ignore SIGHUP clang /gdbtest/build/gdb/testsuite/outputs/gdb.base/condbreak-multi-context/condbreak-multi-context0.o -fdiagnostics-color=never -Wno-unknown-warning-option -g -lm -o /gdbtest/build/gdb/testsuite/outputs/gdb.base/condbreak-multi-context/condbreak-multi-context
spawn /gdbtest/build/gdb/testsuite/../../gdb/gdb -nw -nx -data-directory /gdbtest/build/gdb/testsuite/../data-directory -iex set height 0 -iex set width 0 -ex set sysroot
GNU gdb (GDB) 11.0.50.20201027-git
Copyright (C) 2020 Free Software Foundation, Inc.
@@ -47,24 +47,24 @@
(gdb) file /gdbtest/build/gdb/testsuite/outputs/gdb.base/condbreak-multi-context/condbreak-multi-context
Reading symbols from /gdbtest/build/gdb/testsuite/outputs/gdb.base/condbreak-multi-context/condbreak-multi-context...
(gdb) break func if a == 10
-warning: failed to validate condition at location 1, disabling:
+warning: failed to validate condition at location 2, disabling:
No symbol "a" in current context.
warning: failed to validate condition at location 3, disabling:
No symbol "a" in current context.
-Breakpoint 1 at 0x401164: func. (3 locations)
-(gdb) PASS: gdb.base/condbreak-multi-context.exp: scenario 1: define bp with condition a == 10
+Breakpoint 1 at 0x4011e8: func. (3 locations)
+(gdb) FAIL: gdb.base/condbreak-multi-context.exp: scenario 1: define bp with condition a == 10
print /d $bpnum
$1 = 1
(gdb) PASS: gdb.base/condbreak-multi-context.exp: scenario 1: get bpnum1
break func if c == 30
-Note: breakpoint 1 also set at pc 0x40117c.
-Note: breakpoint 1 also set at pc 0x401170.
-Note: breakpoint 1 also set at pc 0x401164.
+Note: breakpoint 1 also set at pc 0x4011e8.
+Note: breakpoint 1 also set at pc 0x4011f8.
+Note: breakpoint 1 also set at pc 0x401208.
warning: failed to validate condition at location 1, disabling:
No symbol "c" in current context.
warning: failed to validate condition at location 2, disabling:
No symbol "c" in current context.
-Breakpoint 2 at 0x401164: func. (3 locations)
+Breakpoint 2 at 0x4011e8: func. (3 locations)
(gdb) PASS: gdb.base/condbreak-multi-context.exp: scenario 1: define bp with condition c == 30
print /d $bpnum
$2 = 2
@@ -73,20 +73,20 @@
Num Type Disp Enb Address What
1 breakpoint keep y <MULTIPLE>
stop only if a == 10
-1.1 N* 0x0000000000401164 in Base::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:23
-1.2 y 0x0000000000401170 in A::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:31
-1.3 N* 0x000000000040117c in C::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:39
+1.1 y 0x00000000004011e8 in A::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:31
+1.2 N* 0x00000000004011f8 in Base::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:23
+1.3 N* 0x0000000000401208 in C::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:39
2 breakpoint keep y <MULTIPLE>
stop only if c == 30
-2.1 N* 0x0000000000401164 in Base::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:23
-2.2 N* 0x0000000000401170 in A::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:31
-2.3 y 0x000000000040117c in C::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:39
+2.1 N* 0x00000000004011e8 in A::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:31
+2.2 N* 0x00000000004011f8 in Base::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:23
+2.3 y 0x0000000000401208 in C::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:39
(*): Breakpoint condition is invalid at this location.
-(gdb) PASS: gdb.base/condbreak-multi-context.exp: scenario 1: info break 1
+(gdb) FAIL: gdb.base/condbreak-multi-context.exp: scenario 1: info break 1
run
Starting program: /gdbtest/build/gdb/testsuite/outputs/gdb.base/condbreak-multi-context/condbreak-multi-context
-Breakpoint 1, A::func (this=0x7fffffffcfd4) at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:31
+Breakpoint 1, A::func (this=0x7fffffffcfc0) at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:31
31 void func () {}
(gdb) PASS: gdb.base/condbreak-multi-context.exp: scenario 1: run until A::func
print a
@@ -95,7 +95,7 @@
continue
Continuing.
-Breakpoint 2, C::func (this=0x7fffffffcfcc) at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:39
+Breakpoint 2, C::func (this=0x7fffffffcfb8) at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:39
39 void func () {}
(gdb) PASS: gdb.base/condbreak-multi-context.exp: scenario 1: run until C::func
print c
@@ -103,24 +103,24 @@
(gdb) PASS: gdb.base/condbreak-multi-context.exp: scenario 1: print c
continue
Continuing.
-[Inferior 1 (process 3757547) exited normally]
+[Inferior 1 (process 46941) exited normally]
(gdb) PASS: gdb.base/condbreak-multi-context.exp: scenario 1: continue until exit
info break 1 2
Num Type Disp Enb Address What
1 breakpoint keep y <MULTIPLE>
stop only if a == 10
breakpoint already hit 1 time
-1.1 N* 0x0000000000401164 in Base::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:23
-1.2 y 0x0000000000401170 in A::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:31
-1.3 N* 0x000000000040117c in C::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:39
+1.1 y 0x00000000004011e8 in A::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:31
+1.2 N* 0x00000000004011f8 in Base::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:23
+1.3 N* 0x0000000000401208 in C::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:39
2 breakpoint keep y <MULTIPLE>
stop only if c == 30
breakpoint already hit 1 time
-2.1 N* 0x0000000000401164 in Base::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:23
-2.2 N* 0x0000000000401170 in A::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:31
-2.3 y 0x000000000040117c in C::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:39
+2.1 N* 0x00000000004011e8 in A::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:31
+2.2 N* 0x00000000004011f8 in Base::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:23
+2.3 y 0x0000000000401208 in C::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:39
(*): Breakpoint condition is invalid at this location.
-(gdb) PASS: gdb.base/condbreak-multi-context.exp: scenario 1: info break 2
+(gdb) FAIL: gdb.base/condbreak-multi-context.exp: scenario 1: info break 2
spawn /gdbtest/build/gdb/testsuite/../../gdb/gdb -nw -nx -data-directory /gdbtest/build/gdb/testsuite/../data-directory -iex set height 0 -iex set width 0 -ex set sysroot
GNU gdb (GDB) 11.0.50.20201027-git
Copyright (C) 2020 Free Software Foundation, Inc.
@@ -149,24 +149,24 @@
(gdb) file /gdbtest/build/gdb/testsuite/outputs/gdb.base/condbreak-multi-context/condbreak-multi-context
Reading symbols from /gdbtest/build/gdb/testsuite/outputs/gdb.base/condbreak-multi-context/condbreak-multi-context...
(gdb) break func
-Breakpoint 1 at 0x401164: func. (3 locations)
+Breakpoint 1 at 0x4011e8: func. (3 locations)
(gdb) print /d $bpnum
$1 = 1
(gdb) PASS: gdb.base/condbreak-multi-context.exp: scenario 2: get bpnum1
break func
-Note: breakpoint 1 also set at pc 0x40117c.
-Note: breakpoint 1 also set at pc 0x401170.
-Note: breakpoint 1 also set at pc 0x401164.
-Breakpoint 2 at 0x401164: func. (3 locations)
+Note: breakpoint 1 also set at pc 0x4011e8.
+Note: breakpoint 1 also set at pc 0x4011f8.
+Note: breakpoint 1 also set at pc 0x401208.
+Breakpoint 2 at 0x4011e8: func. (3 locations)
(gdb) print /d $bpnum
$2 = 2
(gdb) PASS: gdb.base/condbreak-multi-context.exp: scenario 2: get bpnum2
cond 1 a == 10
-warning: failed to validate condition at location 1.1, disabling:
+warning: failed to validate condition at location 1.2, disabling:
No symbol "a" in current context.
warning: failed to validate condition at location 1.3, disabling:
No symbol "a" in current context.
-(gdb) PASS: gdb.base/condbreak-multi-context.exp: scenario 2: cond 1 a == 10
+(gdb) FAIL: gdb.base/condbreak-multi-context.exp: scenario 2: cond 1 a == 10
cond 2 c == 30
warning: failed to validate condition at location 2.1, disabling:
No symbol "c" in current context.
@@ -177,20 +177,20 @@
Num Type Disp Enb Address What
1 breakpoint keep y <MULTIPLE>
stop only if a == 10
-1.1 N* 0x0000000000401164 in Base::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:23
-1.2 y 0x0000000000401170 in A::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:31
-1.3 N* 0x000000000040117c in C::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:39
+1.1 y 0x00000000004011e8 in A::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:31
+1.2 N* 0x00000000004011f8 in Base::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:23
+1.3 N* 0x0000000000401208 in C::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:39
2 breakpoint keep y <MULTIPLE>
stop only if c == 30
-2.1 N* 0x0000000000401164 in Base::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:23
-2.2 N* 0x0000000000401170 in A::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:31
-2.3 y 0x000000000040117c in C::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:39
+2.1 N* 0x00000000004011e8 in A::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:31
+2.2 N* 0x00000000004011f8 in Base::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:23
+2.3 y 0x0000000000401208 in C::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:39
(*): Breakpoint condition is invalid at this location.
-(gdb) PASS: gdb.base/condbreak-multi-context.exp: scenario 2: info break 1
+(gdb) FAIL: gdb.base/condbreak-multi-context.exp: scenario 2: info break 1
run
Starting program: /gdbtest/build/gdb/testsuite/outputs/gdb.base/condbreak-multi-context/condbreak-multi-context
-Breakpoint 1, A::func (this=0x7fffffffcfd4) at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:31
+Breakpoint 1, A::func (this=0x7fffffffcfc0) at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:31
31 void func () {}
(gdb) PASS: gdb.base/condbreak-multi-context.exp: scenario 2: run until A::func
print a
@@ -199,7 +199,7 @@
continue
Continuing.
-Breakpoint 2, C::func (this=0x7fffffffcfcc) at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:39
+Breakpoint 2, C::func (this=0x7fffffffcfb8) at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:39
39 void func () {}
(gdb) PASS: gdb.base/condbreak-multi-context.exp: scenario 2: run until C::func
print c
@@ -207,24 +207,24 @@
(gdb) PASS: gdb.base/condbreak-multi-context.exp: scenario 2: print c
continue
Continuing.
-[Inferior 1 (process 3757794) exited normally]
+[Inferior 1 (process 47152) exited normally]
(gdb) PASS: gdb.base/condbreak-multi-context.exp: scenario 2: continue until exit
info break 1 2
Num Type Disp Enb Address What
1 breakpoint keep y <MULTIPLE>
stop only if a == 10
breakpoint already hit 1 time
-1.1 N* 0x0000000000401164 in Base::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:23
-1.2 y 0x0000000000401170 in A::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:31
-1.3 N* 0x000000000040117c in C::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:39
+1.1 y 0x00000000004011e8 in A::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:31
+1.2 N* 0x00000000004011f8 in Base::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:23
+1.3 N* 0x0000000000401208 in C::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:39
2 breakpoint keep y <MULTIPLE>
stop only if c == 30
breakpoint already hit 1 time
-2.1 N* 0x0000000000401164 in Base::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:23
-2.2 N* 0x0000000000401170 in A::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:31
-2.3 y 0x000000000040117c in C::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:39
+2.1 N* 0x00000000004011e8 in A::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:31
+2.2 N* 0x00000000004011f8 in Base::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:23
+2.3 y 0x0000000000401208 in C::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:39
(*): Breakpoint condition is invalid at this location.
-(gdb) PASS: gdb.base/condbreak-multi-context.exp: scenario 2: info break 2
+(gdb) FAIL: gdb.base/condbreak-multi-context.exp: scenario 2: info break 2
spawn /gdbtest/build/gdb/testsuite/../../gdb/gdb -nw -nx -data-directory /gdbtest/build/gdb/testsuite/../data-directory -iex set height 0 -iex set width 0 -ex set sysroot
GNU gdb (GDB) 11.0.50.20201027-git
Copyright (C) 2020 Free Software Foundation, Inc.
@@ -253,24 +253,24 @@
(gdb) file /gdbtest/build/gdb/testsuite/outputs/gdb.base/condbreak-multi-context/condbreak-multi-context
Reading symbols from /gdbtest/build/gdb/testsuite/outputs/gdb.base/condbreak-multi-context/condbreak-multi-context...
(gdb) break func
-Breakpoint 1 at 0x401164: func. (3 locations)
+Breakpoint 1 at 0x4011e8: func. (3 locations)
(gdb) print /d $bpnum
$1 = 1
(gdb) PASS: gdb.base/condbreak-multi-context.exp: scenario 3: get bpnum1
break func
-Note: breakpoint 1 also set at pc 0x40117c.
-Note: breakpoint 1 also set at pc 0x401170.
-Note: breakpoint 1 also set at pc 0x401164.
-Breakpoint 2 at 0x401164: func. (3 locations)
+Note: breakpoint 1 also set at pc 0x4011e8.
+Note: breakpoint 1 also set at pc 0x4011f8.
+Note: breakpoint 1 also set at pc 0x401208.
+Breakpoint 2 at 0x4011e8: func. (3 locations)
(gdb) print /d $bpnum
$2 = 2
(gdb) PASS: gdb.base/condbreak-multi-context.exp: scenario 3: get bpnum2
cond 1 a == 10
-warning: failed to validate condition at location 1.1, disabling:
+warning: failed to validate condition at location 1.2, disabling:
No symbol "a" in current context.
warning: failed to validate condition at location 1.3, disabling:
No symbol "a" in current context.
-(gdb) PASS: gdb.base/condbreak-multi-context.exp: scenario 3: cond 1 a == 10
+(gdb) FAIL: gdb.base/condbreak-multi-context.exp: scenario 3: cond 1 a == 10
cond 2 c == 30
warning: failed to validate condition at location 2.1, disabling:
No symbol "c" in current context.
@@ -288,9 +288,9 @@
Num Type Disp Enb Address What
1 breakpoint keep y <MULTIPLE>
stop only if c == 30
-1.1 N* 0x0000000000401164 in Base::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:23
-1.2 N* 0x0000000000401170 in A::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:31
-1.3 y 0x000000000040117c in C::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:39
+1.1 N* 0x00000000004011e8 in A::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:31
+1.2 N* 0x00000000004011f8 in Base::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:23
+1.3 y 0x0000000000401208 in C::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:39
(*): Breakpoint condition is invalid at this location.
(gdb) PASS: gdb.base/condbreak-multi-context.exp: scenario 3: check bp 1 after changing the condition
cond 1
@@ -301,9 +301,9 @@
info break 1
Num Type Disp Enb Address What
1 breakpoint keep y <MULTIPLE>
-1.1 y 0x0000000000401164 in Base::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:23
-1.2 y 0x0000000000401170 in A::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:31
-1.3 y 0x000000000040117c in C::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:39
+1.1 y 0x00000000004011e8 in A::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:31
+1.2 y 0x00000000004011f8 in Base::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:23
+1.3 y 0x0000000000401208 in C::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:39
(gdb) PASS: gdb.base/condbreak-multi-context.exp: scenario 3: check bp 1 after resetting the condition
disable 2.2
(gdb) PASS: gdb.base/condbreak-multi-context.exp: scenario 3: disable 2.2
@@ -311,9 +311,9 @@
Num Type Disp Enb Address What
2 breakpoint keep y <MULTIPLE>
stop only if c == 30
-2.1 N* 0x0000000000401164 in Base::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:23
-2.2 N* 0x0000000000401170 in A::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:31
-2.3 y 0x000000000040117c in C::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:39
+2.1 N* 0x00000000004011e8 in A::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:31
+2.2 N* 0x00000000004011f8 in Base::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:23
+2.3 y 0x0000000000401208 in C::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:39
(*): Breakpoint condition is invalid at this location.
(gdb) PASS: gdb.base/condbreak-multi-context.exp: scenario 3: check bp 2 after disabling loc 2
cond 2
@@ -323,18 +323,18 @@
info break 2
Num Type Disp Enb Address What
2 breakpoint keep y <MULTIPLE>
-2.1 y 0x0000000000401164 in Base::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:23
-2.2 n 0x0000000000401170 in A::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:31
-2.3 y 0x000000000040117c in C::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:39
+2.1 y 0x00000000004011e8 in A::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:31
+2.2 n 0x00000000004011f8 in Base::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:23
+2.3 y 0x0000000000401208 in C::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:39
(gdb) PASS: gdb.base/condbreak-multi-context.exp: scenario 3: check bp 2 loc 2 should remain disabled
disable 2.3
(gdb) PASS: gdb.base/condbreak-multi-context.exp: scenario 3: disable 2.3
info break 2
Num Type Disp Enb Address What
2 breakpoint keep y <MULTIPLE>
-2.1 y 0x0000000000401164 in Base::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:23
-2.2 n 0x0000000000401170 in A::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:31
-2.3 n 0x000000000040117c in C::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:39
+2.1 y 0x00000000004011e8 in A::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:31
+2.2 n 0x00000000004011f8 in Base::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:23
+2.3 n 0x0000000000401208 in C::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:39
(gdb) PASS: gdb.base/condbreak-multi-context.exp: scenario 3: check bp 2 after disabling loc 3
cond 2 c == 30
warning: failed to validate condition at location 2.1, disabling:
@@ -344,9 +344,9 @@
Num Type Disp Enb Address What
2 breakpoint keep y <MULTIPLE>
stop only if c == 30
-2.1 N* 0x0000000000401164 in Base::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:23
-2.2 N* 0x0000000000401170 in A::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:31
-2.3 n 0x000000000040117c in C::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:39
+2.1 N* 0x00000000004011e8 in A::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:31
+2.2 N* 0x00000000004011f8 in Base::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:23
+2.3 n 0x0000000000401208 in C::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:39
(*): Breakpoint condition is invalid at this location.
(gdb) PASS: gdb.base/condbreak-multi-context.exp: scenario 3: check bp 2 loc 3 should remain disabled
enable 2.1
@@ -356,9 +356,9 @@
Num Type Disp Enb Address What
2 breakpoint keep y <MULTIPLE>
stop only if c == 30
-2.1 N* 0x0000000000401164 in Base::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:23
-2.2 N* 0x0000000000401170 in A::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:31
-2.3 n 0x000000000040117c in C::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:39
+2.1 N* 0x00000000004011e8 in A::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:31
+2.2 N* 0x00000000004011f8 in Base::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:23
+2.3 n 0x0000000000401208 in C::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:39
(*): Breakpoint condition is invalid at this location.
(gdb) PASS: gdb.base/condbreak-multi-context.exp: scenario 3: check bp 2 after enable attempt
cond 2 garbage
@@ -367,7 +367,7 @@
delete 1
(gdb) PASS: gdb.base/condbreak-multi-context.exp: scenario 3: delete 1
break main
-Breakpoint 3 at 0x40110e: file /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc, line 45.
+Breakpoint 3 at 0x40111f: file /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc, line 45.
(gdb) run
Starting program: /gdbtest/build/gdb/testsuite/outputs/gdb.base/condbreak-multi-context/condbreak-multi-context
@@ -376,7 +376,7 @@
(gdb) PASS: gdb.base/condbreak-multi-context.exp: scenario 3: start
continue
Continuing.
-[Inferior 1 (process 3758069) exited normally]
+[Inferior 1 (process 47358) exited normally]
(gdb) PASS: gdb.base/condbreak-multi-context.exp: scenario 3: continue until exit
spawn /gdbtest/build/gdb/testsuite/../../gdb/gdb -nw -nx -data-directory /gdbtest/build/gdb/testsuite/../data-directory -iex set height 0 -iex set width 0 -ex set sysroot
GNU gdb (GDB) 11.0.50.20201027-git
@@ -406,7 +406,7 @@
(gdb) file /gdbtest/build/gdb/testsuite/outputs/gdb.base/condbreak-multi-context/condbreak-multi-context
Reading symbols from /gdbtest/build/gdb/testsuite/outputs/gdb.base/condbreak-multi-context/condbreak-multi-context...
(gdb) break func
-Breakpoint 1 at 0x401164: func. (3 locations)
+Breakpoint 1 at 0x4011e8: func. (3 locations)
(gdb) print /d $bpnum
$1 = 1
(gdb) PASS: gdb.base/condbreak-multi-context.exp: force: get bpnum1
@@ -422,22 +422,22 @@
Num Type Disp Enb Address What
1 breakpoint keep y <MULTIPLE>
stop only if foo
-1.1 N* 0x0000000000401164 in Base::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:23
-1.2 N* 0x0000000000401170 in A::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:31
-1.3 N* 0x000000000040117c in C::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:39
+1.1 N* 0x00000000004011e8 in A::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:31
+1.2 N* 0x00000000004011f8 in Base::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:23
+1.3 N* 0x0000000000401208 in C::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:39
(*): Breakpoint condition is invalid at this location.
(gdb) PASS: gdb.base/condbreak-multi-context.exp: force: check bp 1 after forcing the condition
break func -force-condition if baz
-Note: breakpoint 1 also set at pc 0x40117c.
-Note: breakpoint 1 also set at pc 0x401170.
-Note: breakpoint 1 also set at pc 0x401164.
+Note: breakpoint 1 also set at pc 0x4011e8.
+Note: breakpoint 1 also set at pc 0x4011f8.
+Note: breakpoint 1 also set at pc 0x401208.
warning: failed to validate condition at location 1, disabling:
No symbol "baz" in current context.
warning: failed to validate condition at location 2, disabling:
No symbol "baz" in current context.
warning: failed to validate condition at location 3, disabling:
No symbol "baz" in current context.
-Breakpoint 2 at 0x401164: func. (3 locations)
+Breakpoint 2 at 0x4011e8: func. (3 locations)
(gdb) print /d $bpnum
$2 = 2
(gdb) PASS: gdb.base/condbreak-multi-context.exp: force: get bpnum2
@@ -445,16 +445,17 @@
Num Type Disp Enb Address What
2 breakpoint keep y <MULTIPLE>
stop only if baz
-2.1 N* 0x0000000000401164 in Base::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:23
-2.2 N* 0x0000000000401170 in A::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:31
-2.3 N* 0x000000000040117c in C::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:39
+2.1 N* 0x00000000004011e8 in A::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:31
+2.2 N* 0x00000000004011f8 in Base::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:23
+2.3 N* 0x0000000000401208 in C::func() at /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.cc:39
(*): Breakpoint condition is invalid at this location.
(gdb) PASS: gdb.base/condbreak-multi-context.exp: force: check bp 2 set using the break command
-testcase /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.exp completed in 4 seconds
+testcase /gdbtest/src/gdb/testsuite/gdb.base/condbreak-multi-context.exp completed in 5 seconds
=== gdb Summary ===
-# of expected passes 49
+# of expected passes 42
+# of unexpected failures 7
Executing on host: /gdbtest/build/gdb/testsuite/../../gdb/gdb -nw -nx -data-directory /gdbtest/build/gdb/testsuite/../data-directory -iex "set height 0" -iex "set width 0" --version (timeout = 300)
spawn -ignore SIGHUP /gdbtest/build/gdb/testsuite/../../gdb/gdb -nw -nx -data-directory /gdbtest/build/gdb/testsuite/../data-directory -iex set height 0 -iex set width 0 --version
GNU gdb (GDB) 11.0.50.20201027-git
@@ -464,4 +465,4 @@
There is NO WARRANTY, to the extent permitted by law.
/gdbtest/build/gdb/gdb version 11.0.50.20201027-git -nw -nx -data-directory /gdbtest/build/gdb/testsuite/../data-directory -iex "set height 0" -iex "set width 0" -ex "set sysroot"
-runtest completed at Wed Oct 28 15:42:08 2020
+runtest completed at Wed Oct 28 15:53:48 2020
next prev parent reply other threads:[~2020-10-28 16:57 UTC|newest]
Thread overview: 103+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-07-31 15:42 [PATCH " Tankut Baris Aktemur
[not found] ` <cover.1596209606.git.tankut.baris.aktemur@intel.com>
2020-07-31 15:42 ` [PATCH 1/2] gdb/breakpoint: disable a bp location if condition is invalid at that location Tankut Baris Aktemur
2020-07-31 15:42 ` [RFC][PATCH 2/2] gdb/breakpoint: add a '-force' flag to the 'condition' command Tankut Baris Aktemur
2020-08-03 10:28 ` Andrew Burgess
2020-08-20 21:24 ` [PATCH v2 0/2] Breakpoint conditions at locations with differing contexts Tankut Baris Aktemur
2020-08-20 21:24 ` [PATCH v2 1/2] gdb/breakpoint: disable a bp location if condition is invalid at that location Tankut Baris Aktemur
2020-09-19 3:05 ` Simon Marchi
2020-09-25 15:49 ` Aktemur, Tankut Baris via Gdb-patches
2020-09-25 16:10 ` Simon Marchi
2020-09-25 18:15 ` Aktemur, Tankut Baris via Gdb-patches
2020-10-13 12:24 ` Aktemur, Tankut Baris via Gdb-patches
2020-08-20 21:24 ` [PATCH v2 2/2] gdb/breakpoint: add flags to 'condition' and 'break' commands to force condition Tankut Baris Aktemur
2020-09-04 11:02 ` [PATCH v2 0/2] Breakpoint conditions at locations with differing contexts Tankut Baris Aktemur
2020-09-11 11:56 ` Tankut Baris Aktemur
2020-09-18 20:36 ` [PING][PATCH " Tankut Baris Aktemur
2020-09-25 15:51 ` [PATCH v3 " Tankut Baris Aktemur via Gdb-patches
2020-09-25 15:51 ` [PATCH v3 1/2] gdb/breakpoint: disable a bp location if condition is invalid at that location Tankut Baris Aktemur via Gdb-patches
2020-09-25 15:51 ` [PATCH v3 2/2] gdb/breakpoint: add flags to 'condition' and 'break' commands to force condition Tankut Baris Aktemur via Gdb-patches
2020-10-13 12:25 ` [PATCH v4 0/2] Breakpoint conditions at locations with differing contexts Tankut Baris Aktemur via Gdb-patches
2020-10-13 12:25 ` [PATCH v4 1/2] gdb/breakpoint: disable a bp location if condition is invalid at that location Tankut Baris Aktemur via Gdb-patches
2020-10-13 15:06 ` Eli Zaretskii via Gdb-patches
2020-10-13 15:17 ` Aktemur, Tankut Baris via Gdb-patches
2020-10-16 22:20 ` Simon Marchi
2020-10-13 12:25 ` [PATCH v4 2/2] gdb/breakpoint: add flags to 'condition' and 'break' commands to force condition Tankut Baris Aktemur via Gdb-patches
2020-10-13 15:08 ` Eli Zaretskii via Gdb-patches
2020-10-13 15:46 ` Aktemur, Tankut Baris via Gdb-patches
2020-10-13 16:12 ` Eli Zaretskii via Gdb-patches
2020-10-16 22:45 ` Simon Marchi
2020-10-19 13:58 ` Aktemur, Tankut Baris via Gdb-patches
2020-10-19 14:07 ` Simon Marchi
2020-10-27 10:13 ` Aktemur, Tankut Baris via Gdb-patches
2020-10-29 10:10 ` Tom de Vries
2020-10-29 10:30 ` Aktemur, Tankut Baris via Gdb-patches
2020-10-29 17:30 ` Pedro Alves
2020-11-10 19:33 ` Aktemur, Tankut Baris via Gdb-patches
2020-12-05 17:30 ` Pedro Alves
2020-12-10 20:30 ` Tom Tromey
2020-12-15 11:20 ` Aktemur, Tankut Baris via Gdb-patches
2020-11-10 19:51 ` Aktemur, Tankut Baris via Gdb-patches
2020-10-28 16:57 ` Gary Benson via Gdb-patches [this message]
2020-10-29 7:43 ` [PATCH v4 0/2] Breakpoint conditions at locations with differing contexts Aktemur, Tankut Baris via Gdb-patches
2021-04-05 17:45 ` [PATCH " Jonah Graham
2021-04-06 14:11 ` Aktemur, Tankut Baris via Gdb-patches
2021-04-06 14:37 ` Jonah Graham
2021-04-07 7:09 ` Aktemur, Tankut Baris via Gdb-patches
2021-04-07 11:26 ` Jonah Graham
2021-04-07 14:55 ` [PATCH 0/4] Multi-context invalid breakpoint conditions and MI Tankut Baris Aktemur via Gdb-patches
2021-04-07 14:55 ` [PATCH 1/4] gdb/doc: update the 'enabled' field's description for BP locations in MI Tankut Baris Aktemur via Gdb-patches
2021-04-07 15:15 ` Eli Zaretskii via Gdb-patches
2021-04-07 21:42 ` Simon Marchi via Gdb-patches
2021-04-07 14:55 ` [PATCH 2/4] testsuite, gdb.mi: fix duplicate test names in mi-break.exp Tankut Baris Aktemur via Gdb-patches
2021-04-07 21:49 ` Simon Marchi via Gdb-patches
2021-04-07 14:55 ` [PATCH 3/4] gdb/breakpoint: add a 'force_condition' parameter to 'create_breakpoint' Tankut Baris Aktemur via Gdb-patches
2021-04-07 22:08 ` Simon Marchi via Gdb-patches
2021-04-08 7:44 ` Aktemur, Tankut Baris via Gdb-patches
2021-04-08 13:59 ` Simon Marchi via Gdb-patches
2021-04-08 14:19 ` Aktemur, Tankut Baris via Gdb-patches
2021-04-07 14:55 ` [PATCH 4/4] gdb/mi: add a '-b' flag to the '-break-insert' cmd to force the condition Tankut Baris Aktemur via Gdb-patches
2021-04-07 15:18 ` Eli Zaretskii via Gdb-patches
2021-04-07 15:27 ` Aktemur, Tankut Baris via Gdb-patches
2021-04-07 15:53 ` Eli Zaretskii via Gdb-patches
2021-04-07 16:05 ` Aktemur, Tankut Baris via Gdb-patches
2021-04-07 16:50 ` Eli Zaretskii via Gdb-patches
2021-04-07 22:26 ` Simon Marchi via Gdb-patches
2021-04-08 14:22 ` [PATCH v2 0/4] Multi-context invalid breakpoint conditions and MI Tankut Baris Aktemur via Gdb-patches
2021-04-08 14:22 ` [PATCH v2 1/4] gdb/breakpoint: display "N" on MI for disabled-by-condition locations Tankut Baris Aktemur via Gdb-patches
2021-04-08 15:04 ` Eli Zaretskii via Gdb-patches
2021-04-08 14:22 ` [PATCH v2 2/4] testsuite, gdb.mi: fix duplicate test names in mi-break.exp Tankut Baris Aktemur via Gdb-patches
2021-04-08 14:22 ` [PATCH v2 3/4] gdb/breakpoint: add a 'force_condition' parameter to 'create_breakpoint' Tankut Baris Aktemur via Gdb-patches
2021-04-08 14:22 ` [PATCH v2 4/4] gdb/mi: add a '--force-condition' flag to the '-break-insert' cmd Tankut Baris Aktemur via Gdb-patches
2021-04-08 15:06 ` Eli Zaretskii via Gdb-patches
2021-04-08 15:12 ` Aktemur, Tankut Baris via Gdb-patches
2021-04-11 1:06 ` Jonah Graham
2021-04-11 1:12 ` Simon Marchi via Gdb-patches
2021-04-21 12:06 ` Aktemur, Tankut Baris via Gdb-patches
2021-04-21 12:36 ` Simon Marchi via Gdb-patches
2021-04-11 1:13 ` [PATCH v2 0/4] Multi-context invalid breakpoint conditions and MI Jonah Graham
2021-04-21 12:17 ` [PATCH v3 " Tankut Baris Aktemur via Gdb-patches
2021-04-21 12:17 ` [PATCH v3 1/4] gdb/breakpoint: display "N" on MI for disabled-by-condition locations Tankut Baris Aktemur via Gdb-patches
2021-04-21 12:48 ` Eli Zaretskii via Gdb-patches
2021-04-21 12:17 ` [PATCH v3 2/4] testsuite, gdb.mi: fix duplicate test names in mi-break.exp Tankut Baris Aktemur via Gdb-patches
2021-04-21 12:17 ` [PATCH v3 3/4] gdb/breakpoint: add a 'force_condition' parameter to 'create_breakpoint' Tankut Baris Aktemur via Gdb-patches
2021-04-21 13:18 ` Simon Marchi via Gdb-patches
2021-04-21 13:29 ` Aktemur, Tankut Baris via Gdb-patches
2021-04-21 14:28 ` Simon Marchi via Gdb-patches
2021-04-21 12:17 ` [PATCH v3 4/4] gdb/mi: add a '--force-condition' flag to the '-break-insert' cmd Tankut Baris Aktemur via Gdb-patches
2021-04-21 12:50 ` Eli Zaretskii via Gdb-patches
2021-04-21 13:37 ` Simon Marchi via Gdb-patches
2021-04-21 13:49 ` Aktemur, Tankut Baris via Gdb-patches
2021-04-21 14:26 ` Simon Marchi via Gdb-patches
2021-04-22 14:35 ` [PATCH v4 0/2] Multi-context invalid breakpoint conditions and MI Tankut Baris Aktemur via Gdb-patches
2021-04-22 14:35 ` [PATCH v4 1/2] gdb/mi: add a '--force-condition' flag to the '-break-insert' cmd Tankut Baris Aktemur via Gdb-patches
2021-05-06 2:40 ` Simon Marchi via Gdb-patches
2021-04-22 14:35 ` [PATCH v4 2/2] gdb/mi: add a '--force' flag to the '-break-condition' command Tankut Baris Aktemur via Gdb-patches
2021-04-22 14:47 ` Aktemur, Tankut Baris via Gdb-patches
2021-05-06 2:46 ` Simon Marchi via Gdb-patches
2021-05-06 8:50 ` Aktemur, Tankut Baris via Gdb-patches
2021-07-11 18:51 ` Jonah Graham
2021-07-12 0:25 ` Jonah Graham
2021-07-12 8:33 ` Aktemur, Tankut Baris via Gdb-patches
2021-05-05 15:57 ` [PATCH v4 0/2] Multi-context invalid breakpoint conditions and MI Aktemur, Tankut Baris via Gdb-patches
2021-04-07 21:24 ` [PATCH 0/2] Breakpoint conditions at locations with differing contexts Simon Marchi via Gdb-patches
2021-04-07 21:36 ` Jonah Graham
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=20201028165726.GA20653@blade.nx \
--to=gdb-patches@sourceware.org \
--cc=gbenson@redhat.com \
--cc=simark@simark.ca \
--cc=tankut.baris.aktemur@intel.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