diff options
author | Markus Metzger <markus.t.metzger@intel.com> | 2020-12-17 10:28:18 +0100 |
---|---|---|
committer | Markus Metzger <markus.t.metzger@intel.com> | 2021-03-03 09:18:18 +0100 |
commit | 32c5299909162c116728eff2580fc5c3e707af6d (patch) | |
tree | fbeefe7b2703124e4057110d181fbed39cea2cd0 /gdb/testsuite/gdb.btrace | |
parent | 26ed1478d1dd5568b3093476c07bcf36e0047443 (diff) | |
download | gdb-32c5299909162c116728eff2580fc5c3e707af6d.zip gdb-32c5299909162c116728eff2580fc5c3e707af6d.tar.gz gdb-32c5299909162c116728eff2580fc5c3e707af6d.tar.bz2 |
testsuite, gdb.btrace: adjust expected source line in non-stop.exp
In gdb.btrace/non-stop.exp, we hard-code expected source lines assuming we
know how they would match to the recorded trace. Despite the fact that we
should really have been using an assembly source, the assumptions work
pretty well.
With clang-6 -m32, we found a case where the assumptions do not hold.
Adjust the expected source lines a little bit to cover that case, as well.
Should we run into more cases like this, we will have to switch to an
assembly source file.
Diffstat (limited to 'gdb/testsuite/gdb.btrace')
-rw-r--r-- | gdb/testsuite/gdb.btrace/non-stop.exp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/testsuite/gdb.btrace/non-stop.exp b/gdb/testsuite/gdb.btrace/non-stop.exp index 40cced7..e509d65 100644 --- a/gdb/testsuite/gdb.btrace/non-stop.exp +++ b/gdb/testsuite/gdb.btrace/non-stop.exp @@ -111,10 +111,10 @@ gdb_test "thread apply all info rec" ".*" gdb_test "info threads" ".*" with_test_prefix "navigate" { - gdb_test "thread apply 1 record goto 2" "$loop_line" + gdb_test "thread apply 1 record goto 3" "$loop_line" gdb_test "thread apply 2 record goto 4" "$loop_line" gdb_test "thread apply 1 info record" \ - ".*Replay in progress\. At instruction 2\." "thread 1 at insn 2" + ".*Replay in progress\. At instruction 3\." "thread 1 at insn 3" gdb_test "thread apply 2 info record" \ ".*Replay in progress\. At instruction 4\." "thread 2 at insn 4" |