RESOLVED FIXED 108018
Collapse testing for list of PLATFORM() into OS() and USE() tests
https://bugs.webkit.org/show_bug.cgi?id=108018
Summary Collapse testing for list of PLATFORM() into OS() and USE() tests
Laszlo Gombos
Reported 2013-01-26 17:15:41 PST
OS() and USE() tests are preferred over a series of PLATFORM() tests for "for low-level services" - see also the discussion at bug 107406. JavaScriptCore for OS(DARWIN) is used by PLATFORM(MAC), PLATFORM(QT), PLATFORM(WX) and PLATFORM(GTK), so "PLATFORM(MAC) || PLATFORM(IOS) || (PLATFORM(WX) && OS(DARWIN)) || (PLATFORM(QT) && OS(DARWIN))" can be replaced by "OS(DARWIN) && USE(CF)" which makes the code more readable as well. PLATFORM(MAC), PLATFORM(QT) and PLATFORM(WX) are all enable USE(CF) but not PLATFORM(GTK).
Attachments
proposed change (2.20 KB, patch)
2013-01-26 18:26 PST, Laszlo Gombos
no flags
Laszlo Gombos
Comment 1 2013-01-26 18:26:49 PST
Created attachment 184893 [details] proposed change
Eric Seidel (no email)
Comment 2 2013-01-28 22:41:34 PST
Comment on attachment 184893 [details] proposed change LGTM.
WebKit Review Bot
Comment 3 2013-01-28 23:01:13 PST
Comment on attachment 184893 [details] proposed change Clearing flags on attachment: 184893 Committed r141059: <http://trac.webkit.org/changeset/141059>
WebKit Review Bot
Comment 4 2013-01-28 23:01:17 PST
All reviewed patches have been landed. Closing bug.
Note You need to log in before you can comment on or make changes to this bug.