Skip to content

Commit

Permalink
check-for-duplicated-platform-test-results raises AttributeError
Browse files Browse the repository at this point in the history
https://bugs.webkit.org/show_bug.cgi?id=266522

Reviewed by Jonathan Bedard.

This is a regression from 270880@main (cb302cd), as this is a call
site that wasn't found/fixed then. See the commit message for that
commit for further details as to why.

* Tools/Scripts/check-for-duplicated-platform-test-results:

Canonical link: https://commits.webkit.org/272150@main
  • Loading branch information
gsnedders committed Dec 16, 2023
1 parent 24123ed commit a1e9575
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Tools/Scripts/check-for-duplicated-platform-test-results
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import logging
import optparse
import os
import sys
from webkitpy.common import webkit_finder

from webkitpy.common.host import Host
from webkitpy.common.system.logutils import configure_logging
from webkitpy.port.config import apple_additions
Expand All @@ -32,8 +32,8 @@ _log = logging.getLogger(__name__)

host = Host()
host.initialize_scm()
webkit_finder = webkit_finder.WebKitFinder(host.filesystem)
layout_tests_directory = webkit_finder.layout_tests_dir()
port = host.port_factory.get()
layout_tests_directory = port.layout_tests_dir()
platform_directory = os.path.join(layout_tests_directory, 'platform')

txt_types = (".webarchive", ".txt")
Expand Down

0 comments on commit a1e9575

Please sign in to comment.