WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
90764
WebCore needs WEBCORE_TESTING macro to mark methods being exported for testing.
https://bugs.webkit.org/show_bug.cgi?id=90764
Summary
WebCore needs WEBCORE_TESTING macro to mark methods being exported for testing.
Hajime Morrita
Reported
2012-07-09 01:51:47 PDT
WEBCORE_TESTING aims to reduce the burden to edito symbol files just for testing APIs. This will save editing of GTK and Windows ports symbol files.
Attachments
Patch
(20.57 KB, patch)
2012-07-09 21:42 PDT
,
Hajime Morrita
no flags
Details
Formatted Diff
Diff
Patch
(13.89 KB, patch)
2012-07-09 22:37 PDT
,
Hajime Morrita
no flags
Details
Formatted Diff
Diff
Patch
(11.41 KB, patch)
2012-07-10 03:52 PDT
,
Hajime Morrita
no flags
Details
Formatted Diff
Diff
Patch
(11.51 KB, patch)
2012-07-10 21:46 PDT
,
Hajime Morrita
no flags
Details
Formatted Diff
Diff
Patch
(11.41 KB, patch)
2012-07-10 22:45 PDT
,
Hajime Morrita
no flags
Details
Formatted Diff
Diff
Patch
(11.51 KB, patch)
2012-07-11 01:04 PDT
,
Hajime Morrita
no flags
Details
Formatted Diff
Diff
Patch
(11.52 KB, patch)
2012-07-11 02:40 PDT
,
Hajime Morrita
no flags
Details
Formatted Diff
Diff
Patch
(15.05 KB, patch)
2012-07-12 19:02 PDT
,
Hajime Morrita
no flags
Details
Formatted Diff
Diff
Archive of layout-test-results from gce-cr-linux-03
(537.49 KB, application/zip)
2012-07-13 01:25 PDT
,
WebKit Review Bot
no flags
Details
Patch
(15.04 KB, patch)
2012-07-13 01:37 PDT
,
Hajime Morrita
no flags
Details
Formatted Diff
Diff
Archive of layout-test-results from gce-cr-linux-02
(346.46 KB, application/zip)
2012-07-13 04:00 PDT
,
WebKit Review Bot
no flags
Details
Patch for landing
(15.04 KB, patch)
2012-07-16 20:00 PDT
,
Hajime Morrita
no flags
Details
Formatted Diff
Diff
Show Obsolete
(9)
View All
Add attachment
proposed patch, testcase, etc.
Hajime Morrita
Comment 1
2012-07-09 21:42:52 PDT
Created
attachment 151395
[details]
Patch
Hajime Morrita
Comment 2
2012-07-09 22:37:05 PDT
Created
attachment 151400
[details]
Patch
Early Warning System Bot
Comment 3
2012-07-09 23:17:48 PDT
Comment on
attachment 151400
[details]
Patch
Attachment 151400
[details]
did not pass qt-wk2-ews (qt): Output:
http://queues.webkit.org/results/13188011
Build Bot
Comment 4
2012-07-10 00:24:21 PDT
Comment on
attachment 151400
[details]
Patch
Attachment 151400
[details]
did not pass mac-ews (mac): Output:
http://queues.webkit.org/results/13184019
Build Bot
Comment 5
2012-07-10 02:14:23 PDT
Comment on
attachment 151400
[details]
Patch
Attachment 151400
[details]
did not pass win-ews (win): Output:
http://queues.webkit.org/results/13168508
Hajime Morrita
Comment 6
2012-07-10 03:52:23 PDT
Created
attachment 151433
[details]
Patch
Alexey Proskuryakov
Comment 7
2012-07-10 06:17:56 PDT
Comment on
attachment 151433
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=151433&action=review
> Source/WTF/wtf/ExportMacros.h:54 > -#define WTF_EXPORT __declspec(dllexport) > -#define WTF_IMPORT __declspec(dllimport) > -#define WTF_HIDDEN > +#define WTF_EXPORT_DECL __declspec(dllexport) > +#define WTF_IMPORT_DECL __declspec(dllimport) > +#define WTF_HIDDEN_DECL
Why are you renaming these? I think that having the word "declaration" in every declaration's name is an overkill. In any case, please don't abbreviate.
> Source/WTF/wtf/ExportMacros.h:67 > +#if defined(BUILDING_WTF) || defined(STATICALLY_LINKED_WITH_WTF) || (PLATFORM(WX) && defined(BUILDING_JavaScriptCore)) > +#define WTF_SHOULD_EXPORT_SYMBOLS_IF_NEEDED 1 > +#endif
This looks confusing. Is WTF_SHOULD_EXPORT_SYMBOLS_IF_NEEDED only about symbols exported from WTF? But why is it true when statically linking with WTF?
> Source/WTF/wtf/ExportMacros.h:110 > +#if defined(WTF_SHOULD_EXPORT_SYMBOLS_IF_NEEDED)
I'm not sure if this phrase means much. All code should do things that are needed. Can you rephrase or explain this, perhaps as a normal English sentence first?
> Source/WTF/wtf/ExportMacros.h:111 > +#define WTF_EXPORT_TESTING WTF_EXPORT_DECL
"WTF export testing" does not parse when using English grammar. Please correct.
> Source/WTF/wtf/ExportMacros.h:127 > +// See note in wtf/Platform.h for more info on EXPORT_MACROS. > +#if USE(EXPORT_MACROS_FOR_TESTING) > +#if OS(WINDOWS) && !COMPILER(GCC) > +#else > +#endif > +#endif
No-op here.
Hajime Morrita
Comment 8
2012-07-10 17:21:54 PDT
Comment on
attachment 151433
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=151433&action=review
Hi Alexey, thanks for your feedback! I'll address them shortly.
>> Source/WTF/wtf/ExportMacros.h:54 >> +#define WTF_HIDDEN_DECL > > Why are you renaming these? I think that having the word "declaration" in every declaration's name is an overkill. > > In any case, please don't abbreviate.
I'll rename it to eliminate the abbreviation. Point here is that I want to move the compiler specific definitions out from USE(EXPORT_MACROS) since USE(EXPORT_MACROS) and USE(EXPORT_MACROS_FOR_TESTING) is orthogonal (EXPORT_MACROS is disabled on windows but I'd like to enable FOR_TESTING on windows)
>> Source/WTF/wtf/ExportMacros.h:67 >> +#endif > > This looks confusing. Is WTF_SHOULD_EXPORT_SYMBOLS_IF_NEEDED only about symbols exported from WTF? But why is it true when statically linking with WTF?
This is just an extraction from the original conditional of line 70 and lie 96. But I admit the name was bad. Will rename somehow.
>> Source/WTF/wtf/ExportMacros.h:110 >> +#if defined(WTF_SHOULD_EXPORT_SYMBOLS_IF_NEEDED) > > I'm not sure if this phrase means much. All code should do things that are needed. Can you rephrase or explain this, perhaps as a normal English sentence first?
OK. will do.
>> Source/WTF/wtf/ExportMacros.h:111 >> +#define WTF_EXPORT_TESTING WTF_EXPORT_DECL > > "WTF export testing" does not parse when using English grammar. Please correct.
True. will fix.
>> Source/WTF/wtf/ExportMacros.h:127 >> +#endif > > No-op here.
Will fix.
Hajime Morrita
Comment 9
2012-07-10 21:46:58 PDT
Created
attachment 151591
[details]
Patch
Hajime Morrita
Comment 10
2012-07-10 22:45:54 PDT
Created
attachment 151603
[details]
Patch
Build Bot
Comment 11
2012-07-10 23:07:36 PDT
Comment on
attachment 151603
[details]
Patch
Attachment 151603
[details]
did not pass win-ews (win): Output:
http://queues.webkit.org/results/13182302
WebKit Review Bot
Comment 12
2012-07-10 23:13:08 PDT
Comment on
attachment 151603
[details]
Patch
Attachment 151603
[details]
did not pass chromium-ews (chromium-xvfb): Output:
http://queues.webkit.org/results/13205221
Early Warning System Bot
Comment 13
2012-07-10 23:14:48 PDT
Comment on
attachment 151603
[details]
Patch
Attachment 151603
[details]
did not pass qt-wk2-ews (qt): Output:
http://queues.webkit.org/results/13166680
Early Warning System Bot
Comment 14
2012-07-10 23:19:12 PDT
Comment on
attachment 151603
[details]
Patch
Attachment 151603
[details]
did not pass qt-ews (qt): Output:
http://queues.webkit.org/results/13205225
Gyuyoung Kim
Comment 15
2012-07-10 23:36:46 PDT
Comment on
attachment 151603
[details]
Patch
Attachment 151603
[details]
did not pass efl-ews (efl): Output:
http://queues.webkit.org/results/13203226
Build Bot
Comment 16
2012-07-11 00:02:51 PDT
Comment on
attachment 151603
[details]
Patch
Attachment 151603
[details]
did not pass mac-ews (mac): Output:
http://queues.webkit.org/results/13207194
Hajime Morrita
Comment 17
2012-07-11 01:04:27 PDT
Created
attachment 151634
[details]
Patch
Build Bot
Comment 18
2012-07-11 01:47:51 PDT
Comment on
attachment 151634
[details]
Patch
Attachment 151634
[details]
did not pass mac-ews (mac): Output:
http://queues.webkit.org/results/13180365
Early Warning System Bot
Comment 19
2012-07-11 01:57:55 PDT
Comment on
attachment 151634
[details]
Patch
Attachment 151634
[details]
did not pass qt-wk2-ews (qt): Output:
http://queues.webkit.org/results/13211013
Hajime Morrita
Comment 20
2012-07-11 02:40:52 PDT
Created
attachment 151658
[details]
Patch
Build Bot
Comment 21
2012-07-11 03:16:13 PDT
Comment on
attachment 151658
[details]
Patch
Attachment 151658
[details]
did not pass mac-ews (mac): Output:
http://queues.webkit.org/results/13182383
Gustavo Noronha (kov)
Comment 22
2012-07-11 03:35:51 PDT
Comment on
attachment 151658
[details]
Patch
Attachment 151658
[details]
did not pass gtk-ews (gtk): Output:
http://queues.webkit.org/results/13201291
Early Warning System Bot
Comment 23
2012-07-11 04:15:19 PDT
Comment on
attachment 151658
[details]
Patch
Attachment 151658
[details]
did not pass qt-wk2-ews (qt): Output:
http://queues.webkit.org/results/13200286
Hajime Morrita
Comment 24
2012-07-12 19:02:06 PDT
Created
attachment 152131
[details]
Patch
WebKit Review Bot
Comment 25
2012-07-13 01:25:35 PDT
Comment on
attachment 152131
[details]
Patch
Attachment 152131
[details]
did not pass chromium-ews (chromium-xvfb): Output:
http://queues.webkit.org/results/13205986
New failing tests: http/tests/w3c/webperf/approved/navigation-timing/html/test_performance_attributes_exist_in_object.html
WebKit Review Bot
Comment 26
2012-07-13 01:25:39 PDT
Created
attachment 152182
[details]
Archive of layout-test-results from gce-cr-linux-03 The attached test failures were seen while running run-webkit-tests on the chromium-ews. Bot: gce-cr-linux-03 Port: <class 'webkitpy.common.config.ports.ChromiumXVFBPort'> Platform: Linux-2.6.39-gcg-201203291735-x86_64-with-Ubuntu-10.04-lucid
Hajime Morrita
Comment 27
2012-07-13 01:37:51 PDT
Created
attachment 152188
[details]
Patch
WebKit Review Bot
Comment 28
2012-07-13 04:00:51 PDT
Comment on
attachment 152188
[details]
Patch
Attachment 152188
[details]
did not pass chromium-ews (chromium-xvfb): Output:
http://queues.webkit.org/results/13236076
New failing tests: http/tests/w3c/webperf/approved/navigation-timing/html/test_performance_attributes_exist_in_object.html
WebKit Review Bot
Comment 29
2012-07-13 04:00:56 PDT
Created
attachment 152210
[details]
Archive of layout-test-results from gce-cr-linux-02 The attached test failures were seen while running run-webkit-tests on the chromium-ews. Bot: gce-cr-linux-02 Port: <class 'webkitpy.common.config.ports.ChromiumXVFBPort'> Platform: Linux-2.6.39-gcg-201203291735-x86_64-with-Ubuntu-10.04-lucid
Adam Barth
Comment 30
2012-07-13 10:15:03 PDT
> http/tests/w3c/webperf/approved/navigation-timing/html/test_performance_attributes_exist_in_object.html
Sorry for the noise. I've marked this test as flaky.
Hajime Morrita
Comment 31
2012-07-16 17:23:51 PDT
(In reply to
comment #30
)
> > http/tests/w3c/webperf/approved/navigation-timing/html/test_performance_attributes_exist_in_object.html > > Sorry for the noise. I've marked this test as flaky.
Thanks for your help! What do you think about this patch btw? ;-)
Adam Barth
Comment 32
2012-07-16 17:36:16 PDT
Comment on
attachment 152188
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=152188&action=review
This looks great! I'm happy not to have to edit these export lists.
> Source/WebCore/platform/PlatformExportMacros.h:36 > +#if defined(BUILDING_WebCore) || defined(BUILDING_WebKit) || \ > + defined(STATICALLY_LINKED_WITH_WebCore) || defined(STATICALLY_LINKED_WITH_WebKit)
This list is somewhat mysterious, but I see you're just making it not copy/paste code.
> Source/WebCore/platform/PlatformExportMacros.h:56 > #define WEBKIT_EXPORTDATA __declspec(dllexport) > #else > #define WEBKIT_EXPORTDATA __declspec(dllimport)
Should we make these WTF_EXPORT_DECLARATION and WTF_IMPORT_DECLARATION respectively?
> Source/WebCore/platform/PlatformExportMacros.h:70 > +#define WEBCORE_TESTING WTF_EXPORT_DECLARATION
I wonder about the parallelism in naming between WEBCORE_TESTING and WEBKIT_EXPORTDATA. WEBCORE_EXPORTTESTING is kind of long and ugly, so maybe this is fine.
Hajime Morrita
Comment 33
2012-07-16 18:57:25 PDT
Comment on
attachment 152188
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=152188&action=review
Thanks for taking looks this quick! I'll rebase and land this shortly.
>> Source/WebCore/platform/PlatformExportMacros.h:36 >> + defined(STATICALLY_LINKED_WITH_WebCore) || defined(STATICALLY_LINKED_WITH_WebKit) > > This list is somewhat mysterious, but I see you're just making it not copy/paste code.
yup.this is a combination of historical artifact and tricky build configurations... Some ports put WebCore into WebKit and some do not. some make WebCore static and link it into WebKit, etc.
>> Source/WebCore/platform/PlatformExportMacros.h:70 >> +#define WEBCORE_TESTING WTF_EXPORT_DECLARATION > > I wonder about the parallelism in naming between WEBCORE_TESTING and WEBKIT_EXPORTDATA. WEBCORE_EXPORTTESTING is kind of long and ugly, so maybe this is fine.
Yup. I'm choosing this short name since this would be here and there soon.
Hajime Morrita
Comment 34
2012-07-16 20:00:03 PDT
Created
attachment 152684
[details]
Patch for landing
WebKit Review Bot
Comment 35
2012-07-16 21:33:37 PDT
Comment on
attachment 152684
[details]
Patch for landing Clearing flags on attachment: 152684 Committed
r122805
: <
http://trac.webkit.org/changeset/122805
>
WebKit Review Bot
Comment 36
2012-07-16 21:33:44 PDT
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.
Top of Page
Format For Printing
XML
Clone This Bug