Title: [277387] trunk/Tools
Revision
277387
Author
jbed...@apple.com
Date
2021-05-12 13:40:51 -0700 (Wed, 12 May 2021)

Log Message

[TestWebKitAPI] Explicitly exit after completing tests
https://bugs.webkit.org/show_bug.cgi?id=225703
<rdar://problem/77673980>

Reviewed by Alexey Proskuryakov.

* TestWebKitAPI/ios/mainIOS.mm:
(main): Explicitly exit the testing process.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (277386 => 277387)


--- trunk/Tools/ChangeLog	2021-05-12 20:40:15 UTC (rev 277386)
+++ trunk/Tools/ChangeLog	2021-05-12 20:40:51 UTC (rev 277387)
@@ -1,3 +1,14 @@
+2021-05-12  Jonathan Bedard  <jbed...@apple.com>
+
+        [TestWebKitAPI] Explicitly exit after completing tests
+        https://bugs.webkit.org/show_bug.cgi?id=225703
+        <rdar://problem/77673980>
+
+        Reviewed by Alexey Proskuryakov.
+
+        * TestWebKitAPI/ios/mainIOS.mm:
+        (main): Explicitly exit the testing process.
+
 2021-05-12  Chris Dumez  <cdu...@apple.com>
 
         Queue notification permission requests for the same origin on WebKit side

Modified: trunk/Tools/TestWebKitAPI/ios/mainIOS.mm (277386 => 277387)


--- trunk/Tools/TestWebKitAPI/ios/mainIOS.mm	2021-05-12 20:40:15 UTC (rev 277386)
+++ trunk/Tools/TestWebKitAPI/ios/mainIOS.mm	2021-05-12 20:40:51 UTC (rev 277387)
@@ -53,5 +53,6 @@
         passed = TestWebKitAPI::TestsController::singleton().run(argc, argv);
     }
 
-    return passed ? EXIT_SUCCESS : EXIT_FAILURE;
+    // FIXME: Work-around for <rdar://problem/77922262>
+    exit(passed ? EXIT_SUCCESS : EXIT_FAILURE);
 }
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to