Changeset 242260 in webkit


Ignore:
Timestamp:
Mar 1, 2019 12:41:23 AM (5 years ago)
Author:
ysuzuki@apple.com
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):

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r242236 r242260  
     12019-03-01  Yusuke Suzuki  <ysuzuki@apple.com>
     2
     3        Unreviewed, fix lldb webkitpy tests
     4        https://bugs.webkit.org/show_bug.cgi?id=194375
     5
     6        Since we changed the value of Is8Bit flag in StringImpl, we change lldb webkitpy tests accordingly.
     7
     8        * lldb/lldb_webkit.py:
     9        (WTFStringImplProvider.is_8bit):
     10
    1112019-02-28  David Quesada  <david_quesada@apple.com>
    212
  • trunk/Tools/lldb/lldb_webkit.py

    r239651 r242260  
    394394        # FIXME: find a way to access WTF::StringImpl::s_hashFlag8BitBuffer
    395395        return bool(self.valobj.GetChildMemberWithName('m_hashAndFlags').GetValueAsUnsigned(0) \
    396             & 1 << 3)
     396            & 1 << 2)
    397397
    398398    def is_initialized(self):
Note: See TracChangeset for help on using the changeset viewer.