Title: [255160] trunk/Tools
Revision
255160
Author
[email protected]
Date
2020-01-27 12:18:45 -0800 (Mon, 27 Jan 2020)

Log Message

Tools/Scripts/set-webkit-configuration should accept --coverage/--no-coverage
https://bugs.webkit.org/show_bug.cgi?id=206833

Reviewed by Jonathan Bedard.

Just a trivial fix to the arguments validation code of the script.

* Scripts/set-webkit-configuration:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (255159 => 255160)


--- trunk/Tools/ChangeLog	2020-01-27 20:07:23 UTC (rev 255159)
+++ trunk/Tools/ChangeLog	2020-01-27 20:18:45 UTC (rev 255160)
@@ -1,3 +1,14 @@
+2020-01-27  Robin Morisset  <[email protected]>
+
+        Tools/Scripts/set-webkit-configuration should accept --coverage/--no-coverage
+        https://bugs.webkit.org/show_bug.cgi?id=206833
+
+        Reviewed by Jonathan Bedard.
+
+        Just a trivial fix to the arguments validation code of the script.
+
+        * Scripts/set-webkit-configuration:
+
 2020-01-27  Said Abou-Hallawa  <[email protected]>
 
         Throttling requestAnimationFrame should be controlled by RenderingUpdateScheduler

Modified: trunk/Tools/Scripts/set-webkit-configuration (255159 => 255160)


--- trunk/Tools/Scripts/set-webkit-configuration	2020-01-27 20:07:23 UTC (rev 255159)
+++ trunk/Tools/Scripts/set-webkit-configuration	2020-01-27 20:18:45 UTC (rev 255160)
@@ -86,7 +86,9 @@
     exit 0;
 }
 
-if ((!$configuration && !$architecture && !$enableASAN && !$disableASAN && !$ltoMode && !$forceOptimizationLevel) || ($enableASAN && $disableASAN)) {
+if ((!$configuration && !$architecture && !$enableASAN && !$disableASAN && !$enableCoverage && !$disableCoverage && !$ltoMode && !$forceOptimizationLevel)
+    || ($enableASAN && $disableASAN)
+    || ($enableCoverage && $disableCoverage)) {
     print STDERR $usage;
     exit 1;
 }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to