Title: [175377] trunk/Tools
Revision
175377
Author
[email protected]
Date
2014-10-30 13:57:57 -0700 (Thu, 30 Oct 2014)

Log Message

Update safariVersion to safariVersionString
https://bugs.webkit.org/show_bug.cgi?id=138193

The preceding change updated safariVersion to safariVersionString for the "4 Public Beta" check in OS X 10.5.x,
but it should have also been done for the "4 Public Beta" check in OS X 10.4.x.

Rubber-stamped by David Kilzer.

* Scripts/bisect-builds:
(makeNightlyList):
Compare safariVersionString to a string literal, instead of safariVersion.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (175376 => 175377)


--- trunk/Tools/ChangeLog	2014-10-30 19:38:27 UTC (rev 175376)
+++ trunk/Tools/ChangeLog	2014-10-30 20:57:57 UTC (rev 175377)
@@ -1,3 +1,17 @@
+2014-10-30  Matthew Hanson  <[email protected]>
+
+        Update safariVersion to safariVersionString
+        https://bugs.webkit.org/show_bug.cgi?id=138193
+
+        The preceding change updated safariVersion to safariVersionString for the "4 Public Beta" check in OS X 10.5.x,
+        but it should have also been done for the "4 Public Beta" check in OS X 10.4.x.
+
+        Rubber-stamped by David Kilzer.
+
+        * Scripts/bisect-builds:
+        (makeNightlyList):
+        Compare safariVersionString to a string literal, instead of safariVersion.
+
 2014-10-30  Rohit Kumar  <[email protected]>
 
         [GTK] Minibrowser : Add window fullscreen support for Minibrowser

Modified: trunk/Tools/Scripts/bisect-builds (175376 => 175377)


--- trunk/Tools/Scripts/bisect-builds	2014-10-30 19:38:27 UTC (rev 175376)
+++ trunk/Tools/Scripts/bisect-builds	2014-10-30 20:57:57 UTC (rev 175377)
@@ -363,7 +363,7 @@
             die "Requires Safari 2.0 or newer";
         }
     } elsif ($osxVersion ge v10.4 && $osxVersion lt v10.5) {
-        if ($safariVersion eq "4 Public Beta") {
+        if ($safariVersionString eq "4 Public Beta") {
             @files = grep { $_->{rev} >= 39682 } @files;
         } elsif ($safariVersion ge v3.2) {
             @files = grep { $_->{rev} >= 37348 } @files;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to