Changeset 243870 in webkit
- Timestamp:
- Apr 4, 2019, 8:44:37 AM (7 years ago)
- Location:
- trunk/Tools
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
TestWebKitAPI/Tests/WebKit/ReloadPageAfterCrash.cpp (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Tools/ChangeLog
r243863 r243870 1 2019-04-04 Chris Dumez <cdumez@apple.com> 2 3 Unreviewed, roll out r243858 which made tests time out. 4 5 Disable new API tests on Windows instead. 6 7 * TestWebKitAPI/Tests/WebKit/ReloadPageAfterCrash.cpp: 8 (TestWebKitAPI::TEST): 9 1 10 2019-04-03 Carlos Garcia Campos <cgarcia@igalia.com> 2 11 -
trunk/Tools/TestWebKitAPI/Tests/WebKit/ReloadPageAfterCrash.cpp
r243858 r243870 92 92 } 93 93 94 #if !PLATFORM(WIN) 95 94 96 static void nullJavaScriptCallback(WKSerializedScriptValueRef, WKErrorRef, void*) 95 97 { … … 134 136 Util::spinRunLoop(10); 135 137 136 WKPageTerminate(webView.page());138 kill(WKPageGetProcessIdentifier(webView.page()), 9); 137 139 138 140 Util::run(&calledCrashHandler); … … 164 166 Util::spinRunLoop(10); 165 167 166 WKPageTerminate(webView.page());168 kill(WKPageGetProcessIdentifier(webView.page()), 9); 167 169 168 170 Util::run(&calledCrashHandler); 169 171 } 170 172 173 #endif // !PLATFORM(WIN) 174 171 175 } // namespace TestWebKitAPI 172 176
Note:
See TracChangeset
for help on using the changeset viewer.