WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
Bug 194846
[WinCairo] Enable wk1/wk2 suffix for platform search path.
https://bugs.webkit.org/show_bug.cgi?id=194846
Summary
[WinCairo] Enable wk1/wk2 suffix for platform search path.
Basuke Suzuki
Reported
2019-02-19 18:02:58 PST
Currently WinCairo doesn't look into wincairo-wk2 or wincairo-wk1 directory. This patch allows that to enable WebKit or WebKit Legacy specific expectations.
Attachments
Patch
(5.18 KB, patch)
2019-02-19 18:21 PST
,
Basuke Suzuki
no flags
Details
Formatted Diff
Diff
View All
Add attachment
proposed patch, testcase, etc.
Basuke Suzuki
Comment 1
2019-02-19 18:21:11 PST
Created
attachment 362466
[details]
Patch
Fujii Hironori
Comment 2
2019-02-19 20:13:56 PST
Comment on
attachment 362466
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=362466&action=review
> LayoutTests/platform/wincairo-wk1/TestExpectations:16 > +http/tests/websocket/tests/hybi/network-process-crash-error.html [ Skip ]
It seems that all WK1 TestExpectations has this line, e.g. ios-wk1/TestExpectations and mac-wk1/TestExpectations. In such case, this line should be moved into the top TestExpectations, and platform/wk2/TestExpectations should have the following line to enable this test only in WK2.
> http/tests/websocket/tests/hybi/network-process-crash-error.html [ Pass ]
WinCairo WK2 takes platform/wk2/TestExpectations into account.
Fujii Hironori
Comment 3
2019-02-19 20:52:27 PST
Comment on
attachment 362466
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=362466&action=review
> Tools/Scripts/webkitpy/port/win.py:503 > + for version in versions:
I don't like this code because this is too generic even though this is a WinCairoPort's method. It seems that you are following mac.py. Actually mac port is maintianing following TestExpectations. mac mac-highsierra mac-highsierra-wk1 mac-sierra mac-sierra-wk1 mac-sierra-wk2 mac-wk1 mac-wk2 However, WinCairo port doesn't have a plan to maintain Windows version specific TestExpectations.
Basuke Suzuki
Comment 4
2019-02-19 23:54:02 PST
(In reply to Fujii Hironori from
comment #2
)
> Comment on
attachment 362466
[details]
> Patch > > View in context: >
https://bugs.webkit.org/attachment.cgi?id=362466&action=review
> > > LayoutTests/platform/wincairo-wk1/TestExpectations:16 > > +http/tests/websocket/tests/hybi/network-process-crash-error.html [ Skip ] > > It seems that all WK1 TestExpectations has this line, e.g. > ios-wk1/TestExpectations and mac-wk1/TestExpectations. > In such case, this line should be moved into the top TestExpectations, and > platform/wk2/TestExpectations should have the following line to enable this > test only in WK2. > > http/tests/websocket/tests/hybi/network-process-crash-error.html [ Pass ] > > WinCairo WK2 takes platform/wk2/TestExpectations into account.
That's not the point of this patch. This patch just try to enable wk1/wk2 platform variation to WinCairo. That purpose should be on separate patch.
Basuke Suzuki
Comment 5
2019-02-19 23:59:47 PST
(In reply to Fujii Hironori from
comment #3
)
> Comment on
attachment 362466
[details]
> Patch > > View in context: >
https://bugs.webkit.org/attachment.cgi?id=362466&action=review
> > > Tools/Scripts/webkitpy/port/win.py:503 > > + for version in versions: > > I don't like this code because this is too generic even though this is a > WinCairoPort's method.
I'm sorry, I can't understand. This is the basis of structured programming that once the context is defined, it shouldn't be verbose. In this context, the method is implemented in WinCairoPort. In the method, version is meant to be for WinCairo.
> It seems that you are following mac.py. > Actually mac port is maintianing following TestExpectations. > > mac > mac-highsierra > mac-highsierra-wk1 > mac-sierra > mac-sierra-wk1 > mac-sierra-wk2 > mac-wk1 > mac-wk2 > > However, WinCairo port doesn't have a plan to maintain Windows version > specific TestExpectations.
No, we already support wincairo-win10, wincairo-win7 or such. Again, what's your point?
Fujii Hironori
Comment 6
2019-02-20 01:38:56 PST
(In reply to Basuke Suzuki from
comment #5
)
> > However, WinCairo port doesn't have a plan to maintain Windows version > > specific TestExpectations. > > No, we already support wincairo-win10, wincairo-win7 or such. Again, what's > your point?
What do you mean? No such sub directories (wincairo-win10 and wincairo-win7) in the following directory:
https://trac.webkit.org/browser/webkit/trunk/LayoutTests/platform
Fujii Hironori
Comment 7
2019-02-20 02:27:18 PST
I understand what you mean. You mean origianl WinCairoPort class already supports wincairo-win10 and wincairo-win7. That's right. But, I'm talking about maintaining TestExpectations.
Basuke Suzuki
Comment 8
2019-02-20 07:12:35 PST
(In reply to Fujii Hironori from
comment #7
)
> I understand what you mean. You mean origianl WinCairoPort class already > supports wincairo-win10 and wincairo-win7. That's right. > But, I'm talking about maintaining TestExpectations.
We don't have to maintain whole available expectations. This separation makes the accuracy of TestExpectations better. I don't like the test with [Pass Failure] because of the difference between WebKit and Legacy. Same thing for Windows version. What if somebody found a bug when it fails on Windows 7? We don't plan to maintain that, but the guy complains. With the version separation, we simply open a new bug for that guy, add a line to wincairo-win7/TestExpectations with that bug id and that's it. I think that's why both wk1/wk2 separation and Windows version separation are good to have to maintain TextExpectations healthy. What do you think?
Don Olmstead
Comment 9
2019-02-22 12:08:24 PST
Comment on
attachment 362466
[details]
Patch r=me We can just remove this when we fully switch to WebKitTestRunner.
Basuke Suzuki
Comment 10
2019-02-22 19:40:44 PST
Comment on
attachment 362466
[details]
Patch Thanks!
WebKit Commit Bot
Comment 11
2019-02-22 20:06:00 PST
Comment on
attachment 362466
[details]
Patch Clearing flags on attachment: 362466 Committed
r241979
: <
https://trac.webkit.org/changeset/241979
>
WebKit Commit Bot
Comment 12
2019-02-22 20:06:02 PST
All reviewed patches have been landed. Closing bug.
Radar WebKit Bug Importer
Comment 13
2019-02-22 20:07:25 PST
<
rdar://problem/48333562
>
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug