diff options
author | Antoine Tremblay <antoine.tremblay@ericsson.com> | 2016-05-30 11:24:44 -0400 |
---|---|---|
committer | Antoine Tremblay <antoine.tremblay@ericsson.com> | 2016-05-30 12:51:13 -0400 |
commit | a781823347ec9cd84e5ccc0bb8ddde48f8d302b6 (patch) | |
tree | 7ba4f45eefaa5eec7e4237dffb16b72d5e78782b /gdb/testsuite/gdb.trace | |
parent | 0d33646690c2e88624cd9646539d63d4144d03e8 (diff) | |
download | gdb-a781823347ec9cd84e5ccc0bb8ddde48f8d302b6.zip gdb-a781823347ec9cd84e5ccc0bb8ddde48f8d302b6.tar.gz gdb-a781823347ec9cd84e5ccc0bb8ddde48f8d302b6.tar.bz2 |
Add emit_less_unsigned test in trace-condition.exp
This patch adds coverage for emit_less_unsigned.
gdb/testsuite/ChangeLog:
* gdb.trace/trace-condition.exp: Add emit_less_unsigned test.
Diffstat (limited to 'gdb/testsuite/gdb.trace')
-rw-r--r-- | gdb/testsuite/gdb.trace/trace-condition.exp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gdb/testsuite/gdb.trace/trace-condition.exp b/gdb/testsuite/gdb.trace/trace-condition.exp index 115d7eb..b169c62 100644 --- a/gdb/testsuite/gdb.trace/trace-condition.exp +++ b/gdb/testsuite/gdb.trace/trace-condition.exp @@ -179,6 +179,9 @@ foreach trace_command { "trace" "ftrace" } { test_tracepoints $trace_command "21 < 42" 10 test_tracepoints $trace_command "61 < 42" 0 + test_tracepoints $trace_command "21U < 42U" 10 + test_tracepoints $trace_command "61U < 42U" 0 + test_tracepoints $trace_command "42 <= 42" 10 test_tracepoints $trace_command "42 <= 11" 0 |