Title: [287193] trunk/Tools
Revision
287193
Author
[email protected]
Date
2021-12-17 09:42:40 -0800 (Fri, 17 Dec 2021)

Log Message

Tools/Scripts/run-perf-tests is failing on Speedometer2
https://bugs.webkit.org/show_bug.cgi?id=234426

Patch by Alexey Shvayka <[email protected]> on 2021-12-17
Reviewed by Carlos Alberto Lopez Perez.

r282357 added a debug console warning regarding 'dppx' units, which is being emitted
for TodoMVC's stylesheets, thus failing metrics parsing in PerfTest. To fix the execution
of Speedometer2 suite, this particular warning has now been added to the ignore list.

* Scripts/webkitpy/performance_tests/perftest.py:
(PerfTest):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (287192 => 287193)


--- trunk/Tools/ChangeLog	2021-12-17 17:31:38 UTC (rev 287192)
+++ trunk/Tools/ChangeLog	2021-12-17 17:42:40 UTC (rev 287193)
@@ -1,5 +1,19 @@
 2021-12-17  Alexey Shvayka  <[email protected]>
 
+        Tools/Scripts/run-perf-tests is failing on Speedometer2
+        https://bugs.webkit.org/show_bug.cgi?id=234426
+
+        Reviewed by Carlos Alberto Lopez Perez.
+
+        r282357 added a debug console warning regarding 'dppx' units, which is being emitted
+        for TodoMVC's stylesheets, thus failing metrics parsing in PerfTest. To fix the execution
+        of Speedometer2 suite, this particular warning has now been added to the ignore list.
+
+        * Scripts/webkitpy/performance_tests/perftest.py:
+        (PerfTest):
+
+2021-12-17  Alexey Shvayka  <[email protected]>
+
         Fix deprecation warning in Tools/Scripts/run-jsc-benchmarks
         https://bugs.webkit.org/show_bug.cgi?id=234425
 

Modified: trunk/Tools/Scripts/webkitpy/performance_tests/perftest.py (287192 => 287193)


--- trunk/Tools/Scripts/webkitpy/performance_tests/perftest.py	2021-12-17 17:31:38 UTC (rev 287192)
+++ trunk/Tools/Scripts/webkitpy/performance_tests/perftest.py	2021-12-17 17:42:40 UTC (rev 287193)
@@ -253,6 +253,7 @@
         re.compile(r'CONSOLE MESSAGE: (line \d+: )?DEBUG: -------------------------------'),
         re.compile(r'CONSOLE MESSAGE: (line \d+: )?DEBUG: Ember\s+: (\d\.)+'),
         re.compile(r'CONSOLE MESSAGE: (line \d+: )?DEBUG: jQuery\s+: (\d\.)+'),
+        re.compile(r"CONSOLE MESSAGE: Consider using 'dppx' units instead of '.+"),
     ]
 
     _errors_to_ignore_in_sierra = [
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to