WebKit Bugzilla
Attachment 347953 Details for
Bug 188902
: Fix handling of iOS minor versions in default_baseline_search_path
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
Patch
bug-188902-20180823143648.patch (text/plain), 1.34 KB, created by
Jonathan Bedard
on 2018-08-23 14:36:49 PDT
(
hide
)
Description:
Patch
Filename:
MIME Type:
Creator:
Jonathan Bedard
Created:
2018-08-23 14:36:49 PDT
Size:
1.34 KB
patch
obsolete
>Index: Tools/ChangeLog >=================================================================== >--- Tools/ChangeLog (revision 235246) >+++ Tools/ChangeLog (working copy) >@@ -1,3 +1,14 @@ >+2018-08-23 Jonathan Bedard <jbedard@apple.com> >+ >+ Fix handling of iOS minor versions in default_baseline_search_path >+ https://bugs.webkit.org/show_bug.cgi?id=188902 >+ >+ Reviewed by NOBODY (OOPS!). >+ >+ * Scripts/webkitpy/port/ios.py: >+ (IOSPort.default_baseline_search_path): When the major version matches the major version of the CURRENT_VERSION, treat >+ it as a the CURRENT_VERSION. >+ > 2018-08-22 Ryosuke Niwa <rniwa@webkit.org> > > Assert in NetworkBlobRegistry::unregisterBlobURL after network process had terminated >Index: Tools/Scripts/webkitpy/port/ios.py >=================================================================== >--- Tools/Scripts/webkitpy/port/ios.py (revision 235202) >+++ Tools/Scripts/webkitpy/port/ios.py (working copy) >@@ -96,7 +96,7 @@ class IOSPort(DarwinPort): > wk_string = 'wk2' > > versions_to_fallback = [] >- if self.ios_version() == self.CURRENT_VERSION: >+ if self.ios_version().major == self.CURRENT_VERSION.major: > versions_to_fallback = [self.CURRENT_VERSION] > elif self.ios_version(): > temp_version = Version(self.ios_version().major)
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Formatted Diff
|
Diff
Attachments on
bug 188902
: 347953