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.
This commit is contained in:
Antoine Tremblay 2016-05-30 11:24:44 -04:00
parent 0d33646690
commit a781823347
2 changed files with 7 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2016-05-30 Antoine Tremblay <antoine.tremblay@ericsson.com>
* gdb.trace/trace-condition.exp: Add emit_less_unsigned test.
2016-05-30 Antoine Tremblay <antoine.tremblay@ericsson.com>
* gdb.trace/ftrace.exp (test_ftrace_condition): Remove.

View File

@ -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