<html><head><meta http-equiv="Content-Type" content="text/html charset=utf-8"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class=""><div class="">I am probably being a little dense right now, but I can't seem to find (const char*)0x1000 anywhere in the test case code...</div><br class=""><div><blockquote type="cite" class=""><div class="">On Sep 1, 2016, at 2:17 AM, Pavel Labath via lldb-commits <<a href="mailto:lldb-commits@lists.llvm.org" class="">lldb-commits@lists.llvm.org</a>> wrote:</div><br class="Apple-interchange-newline"><div class=""><div class="">Author: labath<br class="">Date: Thu Sep  1 04:17:37 2016<br class="">New Revision: 280344<br class=""><br class="">URL: <a href="http://llvm.org/viewvc/llvm-project?rev=280344&view=rev" class="">http://llvm.org/viewvc/llvm-project?rev=280344&view=rev</a><br class="">Log:<br class="">XFail TestMemoryFind on 32-bit architectures<br class=""><br class="">the test fails for a very prosaic reason: `(const char *)0x1000` returns "4096" on x86_64 and<br class="">"1000" (without the "0x") on i386. I haven't tried other 32-bit arches, but I am guessing the<br class="">behaviour is the same. XFAIL until someone can get a chance to look at this.<br class=""><br class="">Modified:<br class="">    lldb/trunk/packages/Python/lldbsuite/test/functionalities/memory/find/TestMemoryFind.py<br class=""><br class="">Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/memory/find/TestMemoryFind.py<br class="">URL: <a href="http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/memory/find/TestMemoryFind.py?rev=280344&r1=280343&r2=280344&view=diff" class="">http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/memory/find/TestMemoryFind.py?rev=280344&r1=280343&r2=280344&view=diff</a><br class="">==============================================================================<br class="">--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/memory/find/TestMemoryFind.py (original)<br class="">+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/memory/find/TestMemoryFind.py Thu Sep  1 04:17:37 2016<br class="">@@ -11,6 +11,7 @@ import re<br class=""> import lldb<br class=""> from lldbsuite.test.lldbtest import *<br class=""> import lldbsuite.test.lldbutil as lldbutil<br class="">+from lldbsuite.test.decorators import *<br class=""><br class=""> class MemoryFindTestCase(TestBase):<br class=""><br class="">@@ -22,6 +23,7 @@ class MemoryFindTestCase(TestBase):<br class="">         # Find the line number to break inside main().<br class="">         self.line = line_number('main.cpp', '// break here')<br class=""><br class="">+    @expectedFailureAll(archs=["i386", "arm"])<br class="">     def test_memory_find(self):<br class="">         """Test the 'memory find' command."""<br class="">         self.build()<br class=""><br class=""><br class="">_______________________________________________<br class="">lldb-commits mailing list<br class=""><a href="mailto:lldb-commits@lists.llvm.org" class="">lldb-commits@lists.llvm.org</a><br class="">http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits<br class=""></div></div></blockquote></div><br class=""><div class="">
<div class="" style="color: rgb(0, 0, 0); font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;"><br class="Apple-interchange-newline">Thanks,</div><div class="" style="color: rgb(0, 0, 0); font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;"><i class="">- Enrico</i><br class="">📩 egranata@<font color="#ff2600" class=""></font>.com ☎️ 27683</div>
</div>
<br class=""></body></html>