Title: [221069] trunk/Tools
Revision
221069
Author
zandober...@gmail.com
Date
2017-08-22 23:45:42 -0700 (Tue, 22 Aug 2017)

Log Message

Unreviewed. The WPE port should build TestWebKitAPI with the same
compiler flags as the GTK+ port, disabling a few flags that are
sprouting a lot of warning output.

* TestWebKitAPI/PlatformWPE.cmake:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (221068 => 221069)


--- trunk/Tools/ChangeLog	2017-08-23 04:59:30 UTC (rev 221068)
+++ trunk/Tools/ChangeLog	2017-08-23 06:45:42 UTC (rev 221069)
@@ -1,3 +1,11 @@
+2017-08-22  Zan Dobersek  <zdober...@igalia.com>
+
+        Unreviewed. The WPE port should build TestWebKitAPI with the same
+        compiler flags as the GTK+ port, disabling a few flags that are
+        sprouting a lot of warning output.
+
+        * TestWebKitAPI/PlatformWPE.cmake:
+
 2017-08-20  Wenson Hsieh  <wenson_hs...@apple.com>
 
         [iOS WK2] WKWebView schedules nonstop layout after pressing cmb+b,i,u inside a contenteditable div

Modified: trunk/Tools/TestWebKitAPI/PlatformWPE.cmake (221068 => 221069)


--- trunk/Tools/TestWebKitAPI/PlatformWPE.cmake	2017-08-23 04:59:30 UTC (rev 221068)
+++ trunk/Tools/TestWebKitAPI/PlatformWPE.cmake	2017-08-23 06:45:42 UTC (rev 221069)
@@ -58,3 +58,9 @@
 add_test(TestWebCore ${TESTWEBKITAPI_RUNTIME_OUTPUT_DIRECTORY}/WebCore/TestWebCore)
 set_tests_properties(TestWebCore PROPERTIES TIMEOUT 60)
 set_target_properties(TestWebCore PROPERTIES RUNTIME_OUTPUT_DIRECTORY ${TESTWEBKITAPI_RUNTIME_OUTPUT_DIRECTORY}/WebCore)
+
+if (COMPILER_IS_GCC_OR_CLANG)
+    WEBKIT_ADD_TARGET_CXX_FLAGS(TestWebCore -Wno-sign-compare
+                                            -Wno-undef
+                                            -Wno-unused-parameter)
+endif ()
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to