diff options
author | Markus Metzger <markus.t.metzger@intel.com> | 2020-12-15 12:46:58 +0100 |
---|---|---|
committer | Markus Metzger <markus.t.metzger@intel.com> | 2021-03-03 09:13:32 +0100 |
commit | e71dbd03045836f8a604ccc2ac709823479110cc (patch) | |
tree | 267a21d4d3676e249bd14e4f05bf103537f3ea41 /gdb/testsuite/gdb.btrace/delta.exp | |
parent | b93a3ed0a8561cb8f9541eca975e8c76f728d86c (diff) | |
download | gdb-e71dbd03045836f8a604ccc2ac709823479110cc.zip gdb-e71dbd03045836f8a604ccc2ac709823479110cc.tar.gz gdb-e71dbd03045836f8a604ccc2ac709823479110cc.tar.bz2 |
testsuite, gdb.btrace: remove assembly-check in delta.exp
In gdb.btrace/delta.exp, we test that we do not extend the trace
unintentionally. This can be tested by checking the number of
instructions.
If we wanted to check the instruction history, as well, we'd need to work
on an assembly file to have deterministic behaviour. This isn't really
necessary for this test, however, and covered elsewhere. Also remove the
function call history check for the same reason.
Diffstat (limited to 'gdb/testsuite/gdb.btrace/delta.exp')
-rw-r--r-- | gdb/testsuite/gdb.btrace/delta.exp | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/gdb/testsuite/gdb.btrace/delta.exp b/gdb/testsuite/gdb.btrace/delta.exp index 9f6d741..0d61e9a 100644 --- a/gdb/testsuite/gdb.btrace/delta.exp +++ b/gdb/testsuite/gdb.btrace/delta.exp @@ -58,9 +58,6 @@ proc check_trace {} { "Recording format: .*" \ "Recorded 1 instructions in 1 functions \\\(0 gaps\\\) for .*" \ ] - gdb_test "record instruction-history /f 1" \ - "1\t 0x\[0-9a-f\]+ <\\+\[0-9\]+>:\tmov *\\\$0x0,%eax\r" - gdb_test "record function-call-history /c 1" "1\tmain" } # make sure we don't extend the trace when we ask twice. @@ -86,9 +83,5 @@ with_test_prefix "reverse" { # and back with_test_prefix "forward" { gdb_test "stepi" - gdb_test "info record" [multi_line \ - "Active record target: record-btrace" \ - "Recording format: .*" \ - "Recorded 1 instructions in 1 functions \\\(0 gaps\\\) for .*" \ - ] + check_trace } |