Changeset 173798 in webkit


Ignore:
Timestamp:
Sep 21, 2014 1:30:10 PM (10 years ago)
Author:
commit-queue@webkit.org
Message:

run-webkit-tests should count tests submitted as absolute paths once
https://bugs.webkit.org/show_bug.cgi?id=136848

Patch by Youenn Fablet <youenn.fablet@crf.canon.fr> on 2014-09-21
Reviewed by Darin Adler.

  • Scripts/webkitpy/port/base.py:

(Port._expanded_paths): In case of absolute path, do not search for platform specific tests.

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r173789 r173798  
     12014-09-21  Youenn Fablet  <youenn.fablet@crf.canon.fr>
     2
     3        run-webkit-tests should count tests submitted as absolute paths once
     4        https://bugs.webkit.org/show_bug.cgi?id=136848
     5
     6        Reviewed by Darin Adler.
     7
     8        * Scripts/webkitpy/port/base.py:
     9        (Port._expanded_paths): In case of absolute path, do not search for platform specific tests.
     10
    1112014-09-19  Joseph Pecoraro  <pecoraro@apple.com>
    212
  • trunk/Tools/Scripts/webkitpy/port/base.py

    r173557 r173798  
    536536        for path in paths:
    537537            expanded_paths.append(path)
    538             if self.test_isdir(path) and not path.startswith('platform'):
     538            if self.test_isdir(path) and not path.startswith('platform') and not fs.isabs(path):
    539539                for platform_dir in all_platform_dirs:
    540540                    if fs.isdir(fs.join(platform_dir, path)) and platform_dir in self.baseline_search_path():
Note: See TracChangeset for help on using the changeset viewer.