Title: [210225] trunk/Tools
Revision
210225
Author
[email protected]
Date
2017-01-02 08:41:11 -0800 (Mon, 02 Jan 2017)

Log Message

[GTK] WebCore/CSSParser unit test is not being built
https://bugs.webkit.org/show_bug.cgi?id=166492

Reviewed by Michael Catanzaro.

This test was introduced in r175930, but we were not building
it on GTK+ port since r176015.
This patch marks the test to be built again on GTK+.
JFTR, the test is passing right now.

* TestWebKitAPI/PlatformGTK.cmake: Add CSSParser.cpp test file and use
ADD_WHOLE_ARCHIVE_TO_LIBRARIES to avoid linking errors.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (210224 => 210225)


--- trunk/Tools/ChangeLog	2017-01-02 15:36:41 UTC (rev 210224)
+++ trunk/Tools/ChangeLog	2017-01-02 16:41:11 UTC (rev 210225)
@@ -1,3 +1,18 @@
+2017-01-02  Manuel Rego Casasnovas  <[email protected]>
+
+        [GTK] WebCore/CSSParser unit test is not being built
+        https://bugs.webkit.org/show_bug.cgi?id=166492
+
+        Reviewed by Michael Catanzaro.
+
+        This test was introduced in r175930, but we were not building
+        it on GTK+ port since r176015.
+        This patch marks the test to be built again on GTK+.
+        JFTR, the test is passing right now.
+
+        * TestWebKitAPI/PlatformGTK.cmake: Add CSSParser.cpp test file and use
+        ADD_WHOLE_ARCHIVE_TO_LIBRARIES to avoid linking errors.
+
 2017-01-02  Chris Fleizach  <[email protected]>
 
         AX: Expose block quote level to iOS API

Modified: trunk/Tools/TestWebKitAPI/PlatformGTK.cmake (210224 => 210225)


--- trunk/Tools/TestWebKitAPI/PlatformGTK.cmake	2017-01-02 15:36:41 UTC (rev 210224)
+++ trunk/Tools/TestWebKitAPI/PlatformGTK.cmake	2017-01-02 16:41:11 UTC (rev 210225)
@@ -56,6 +56,7 @@
     ${GDK3_LIBRARIES}
     ${GTK3_LIBRARIES}
 )
+ADD_WHOLE_ARCHIVE_TO_LIBRARIES(test_webcore_LIBRARIES)
 
 list(APPEND TestWebKitAPI_LIBRARIES
     ${GDK3_LIBRARIES}
@@ -129,6 +130,7 @@
 add_executable(TestWebCore
     ${test_main_SOURCES}
     ${TESTWEBKITAPI_DIR}/TestsController.cpp
+    ${TESTWEBKITAPI_DIR}/Tests/WebCore/CSSParser.cpp
     ${TESTWEBKITAPI_DIR}/Tests/WebCore/FileSystem.cpp
     ${TESTWEBKITAPI_DIR}/Tests/WebCore/HTMLParserIdioms.cpp
     ${TESTWEBKITAPI_DIR}/Tests/WebCore/LayoutUnit.cpp
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to