Title: [268787] trunk/Tools
Revision
268787
Author
lmo...@igalia.com
Date
2020-10-21 00:32:16 -0700 (Wed, 21 Oct 2020)

Log 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.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (268786 => 268787)


--- trunk/Tools/ChangeLog	2020-10-21 06:25:38 UTC (rev 268786)
+++ trunk/Tools/ChangeLog	2020-10-21 07:32:16 UTC (rev 268787)
@@ -1,3 +1,14 @@
+2020-10-21  Lauro Moura  <lmo...@igalia.com>
+
+        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.
+
 2020-10-20  Aakash Jain  <aakash_j...@apple.com>
 
         report-non-inclusive-language should do exact match for directory names to ignore

Modified: trunk/Tools/Scripts/webkitpy/webdriver_tests/webdriver_test_runner.py (268786 => 268787)


--- trunk/Tools/Scripts/webkitpy/webdriver_tests/webdriver_test_runner.py	2020-10-21 06:25:38 UTC (rev 268786)
+++ trunk/Tools/Scripts/webkitpy/webdriver_tests/webdriver_test_runner.py	2020-10-21 07:32:16 UTC (rev 268787)
@@ -102,7 +102,7 @@
                         results.setdefault(status, []).append(os.path.join(os.path.dirname(result.test), subtest))
                         passed_count += 1
             elif result.status == 'ERROR':  # Harness execution error
-                results.setdefault('FAIL', []).append(os.path.dirname(result.test))
+                results.setdefault('FAIL', []).append(result.test)
             else:
                 # FIXME: handle other results.
                 pass
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to