Title: [268317] trunk/Tools
Revision
268317
Author
ysuz...@apple.com
Date
2020-10-11 01:48:50 -0700 (Sun, 11 Oct 2020)

Log Message

Unreviewed, fix WK2 Debug test failures
https://bugs.webkit.org/show_bug.cgi?id=217500

WebKitTestRunner also uses WebCoreTestSupport's JIT operations so we need to populate them too.

* WebKitTestRunner/InjectedBundle/InjectedBundle.cpp:
(WTR::InjectedBundle::initialize):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (268316 => 268317)


--- trunk/Tools/ChangeLog	2020-10-11 05:27:28 UTC (rev 268316)
+++ trunk/Tools/ChangeLog	2020-10-11 08:48:50 UTC (rev 268317)
@@ -1,3 +1,13 @@
+2020-10-11  Yusuke Suzuki  <ysuz...@apple.com>
+
+        Unreviewed, fix WK2 Debug test failures
+        https://bugs.webkit.org/show_bug.cgi?id=217500
+
+        WebKitTestRunner also uses WebCoreTestSupport's JIT operations so we need to populate them too.
+
+        * WebKitTestRunner/InjectedBundle/InjectedBundle.cpp:
+        (WTR::InjectedBundle::initialize):
+
 2020-10-09  Yusuke Suzuki  <ysuz...@apple.com>
 
         [JSC] Assert Operation and HostFunction are in JITOperationsList

Modified: trunk/Tools/WebKitTestRunner/InjectedBundle/InjectedBundle.cpp (268316 => 268317)


--- trunk/Tools/WebKitTestRunner/InjectedBundle/InjectedBundle.cpp	2020-10-11 05:27:28 UTC (rev 268316)
+++ trunk/Tools/WebKitTestRunner/InjectedBundle/InjectedBundle.cpp	2020-10-11 08:48:50 UTC (rev 268317)
@@ -104,6 +104,7 @@
     WKBundleSetClient(m_bundle, &client.base);
     WKBundleSetServiceWorkerProxyCreationCallback(m_bundle, WebCoreTestSupport::setupNewlyCreatedServiceWorker);
     platformInitialize(initializationUserData);
+    WebCoreTestSupport::populateJITOperations();
 
     activateFonts();
 }
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to