forked from OSchip/llvm-project
Change gdb remote test support multi-request format.
The multi request-response test infrastructure support was adding the optional request suffix iteration index as decimal but it needed to be hex per spec. This change fixes that. llvm-svn: 209234
This commit is contained in:
parent
2f22b94201
commit
4e53f9e1fe
|
@ -465,7 +465,7 @@ class MultiResponseGdbRemoteEntry(object):
|
|||
|
||||
# Append the suffix as needed.
|
||||
if self._append_iteration_suffix:
|
||||
payload += "%d" % self._iteration
|
||||
payload += "%x" % self._iteration
|
||||
|
||||
# Keep track of the iteration.
|
||||
self._iteration += 1
|
||||
|
|
Loading…
Reference in New Issue