Changeset 268787 in webkit
- Timestamp:
- Oct 21, 2020, 12:32:16 AM (6 years ago)
- Location:
- trunk/Tools
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
Scripts/webkitpy/webdriver_tests/webdriver_test_runner.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Tools/ChangeLog
r268772 r268787 1 2020-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 1 12 2020-10-20 Aakash Jain <aakash_jain@apple.com> 2 13 -
trunk/Tools/Scripts/webkitpy/webdriver_tests/webdriver_test_runner.py
r268402 r268787 103 103 passed_count += 1 104 104 elif result.status == 'ERROR': # Harness execution error 105 results.setdefault('FAIL', []).append( os.path.dirname(result.test))105 results.setdefault('FAIL', []).append(result.test) 106 106 else: 107 107 # FIXME: handle other results.
Note:
See TracChangeset
for help on using the changeset viewer.