Title: [242260] trunk/Tools
Revision
242260
Author
ysuz...@apple.com
Date
2019-03-01 00:41:23 -0800 (Fri, 01 Mar 2019)

Log Message

Unreviewed, fix lldb webkitpy tests
https://bugs.webkit.org/show_bug.cgi?id=194375

Since we changed the value of Is8Bit flag in StringImpl, we change lldb webkitpy tests accordingly.

* lldb/lldb_webkit.py:
(WTFStringImplProvider.is_8bit):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (242259 => 242260)


--- trunk/Tools/ChangeLog	2019-03-01 08:39:30 UTC (rev 242259)
+++ trunk/Tools/ChangeLog	2019-03-01 08:41:23 UTC (rev 242260)
@@ -1,3 +1,13 @@
+2019-03-01  Yusuke Suzuki  <ysuz...@apple.com>
+
+        Unreviewed, fix lldb webkitpy tests
+        https://bugs.webkit.org/show_bug.cgi?id=194375
+
+        Since we changed the value of Is8Bit flag in StringImpl, we change lldb webkitpy tests accordingly.
+
+        * lldb/lldb_webkit.py:
+        (WTFStringImplProvider.is_8bit):
+
 2019-02-28  David Quesada  <david_ques...@apple.com>
 
         Expose APINavigationAction.shouldPerformDownload() on WKNavigationAction

Modified: trunk/Tools/lldb/lldb_webkit.py (242259 => 242260)


--- trunk/Tools/lldb/lldb_webkit.py	2019-03-01 08:39:30 UTC (rev 242259)
+++ trunk/Tools/lldb/lldb_webkit.py	2019-03-01 08:41:23 UTC (rev 242260)
@@ -393,7 +393,7 @@
     def is_8bit(self):
         # FIXME: find a way to access WTF::StringImpl::s_hashFlag8BitBuffer
         return bool(self.valobj.GetChildMemberWithName('m_hashAndFlags').GetValueAsUnsigned(0) \
-            & 1 << 3)
+            & 1 << 2)
 
     def is_initialized(self):
         return self.valobj.GetValueAsUnsigned() != 0
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to