Author: tfiala
Date: Tue May 20 15:02:08 2014
New Revision: 209234

URL: http://llvm.org/viewvc/llvm-project?rev=209234&view=rev
Log:
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.

Modified:
    lldb/trunk/test/tools/lldb-gdbserver/lldbgdbserverutils.py

Modified: lldb/trunk/test/tools/lldb-gdbserver/lldbgdbserverutils.py
URL: 
http://llvm.org/viewvc/llvm-project/lldb/trunk/test/tools/lldb-gdbserver/lldbgdbserverutils.py?rev=209234&r1=209233&r2=209234&view=diff
==============================================================================
--- lldb/trunk/test/tools/lldb-gdbserver/lldbgdbserverutils.py (original)
+++ lldb/trunk/test/tools/lldb-gdbserver/lldbgdbserverutils.py Tue May 20 
15:02:08 2014
@@ -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


_______________________________________________
lldb-commits mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/lldb-commits

Reply via email to