Changeset 247139 in webkit


Ignore:
Timestamp:
Jul 4, 2019 6:28:45 AM (5 years ago)
Author:
clopez@igalia.com
Message:

[webkitpy] test-webkitpy is broken on Linux since r246662
https://bugs.webkit.org/show_bug.cgi?id=199493

Reviewed by Michael Catanzaro.

  • Scripts/webkitpy/test/main.py:

(_supports_building_and_running_lldb_tests): Add a check for None before calling startswith().

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r247138 r247139  
     12019-07-04  Carlos Alberto Lopez Perez  <clopez@igalia.com>
     2
     3        [webkitpy] test-webkitpy is broken on Linux since r246662
     4        https://bugs.webkit.org/show_bug.cgi?id=199493
     5
     6        Reviewed by Michael Catanzaro.
     7
     8        * Scripts/webkitpy/test/main.py:
     9        (_supports_building_and_running_lldb_tests): Add a check for None before calling startswith().
     10
    1112019-07-02  Carlos Alberto Lopez Perez  <clopez@igalia.com>
    212
  • trunk/Tools/Scripts/webkitpy/test/main.py

    r246742 r247139  
    105105    # FIXME: Remove when test-lldb is in its own script
    106106    # https://bugs.webkit.org/show_bug.cgi?id=187916
    107     return not _host.platform.build_version().startswith('19A')
     107    build_version = _host.platform.build_version()
     108    if build_version is None:
     109        return False
     110    return not build_version.startswith('19A')
    108111
    109112
Note: See TracChangeset for help on using the changeset viewer.