⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 268787 in webkit


Ignore:
Timestamp:
Oct 21, 2020, 12:32:16 AM (6 years ago)
Author:
Lauro Moura
Message:

webkitpy: Fix webdriver logging message
https://bugs.webkit.org/show_bug.cgi?id=218006

Reviewed by Carlos Garcia Campos.

  • Scripts/webkitpy/webdriver_tests/webdriver_test_runner.py:

(WebDriverTestRunner.process_results): Use the test name instead of
the dir name.

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r268772 r268787  
     12020-10-21  Lauro Moura  <lmoura@igalia.com>
     2
     3        webkitpy: Fix webdriver logging message
     4        https://bugs.webkit.org/show_bug.cgi?id=218006
     5
     6        Reviewed by Carlos Garcia Campos.
     7
     8        * Scripts/webkitpy/webdriver_tests/webdriver_test_runner.py:
     9        (WebDriverTestRunner.process_results): Use the test name instead of
     10        the dir name.
     11
    1122020-10-20  Aakash Jain  <aakash_jain@apple.com>
    213
  • trunk/Tools/Scripts/webkitpy/webdriver_tests/webdriver_test_runner.py

    r268402 r268787  
    103103                        passed_count += 1
    104104            elif result.status == 'ERROR':  # Harness execution error
    105                 results.setdefault('FAIL', []).append(os.path.dirname(result.test))
     105                results.setdefault('FAIL', []).append(result.test)
    106106            else:
    107107                # FIXME: handle other results.
Note: See TracChangeset for help on using the changeset viewer.