⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 277387 in webkit


Ignore:
Timestamp:
May 12, 2021, 1:40:51 PM (5 years ago)
Author:
Jonathan Bedard
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.

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r277376 r277387  
     12021-05-12  Jonathan Bedard  <jbedard@apple.com>
     2
     3        [TestWebKitAPI] Explicitly exit after completing tests
     4        https://bugs.webkit.org/show_bug.cgi?id=225703
     5        <rdar://problem/77673980>
     6
     7        Reviewed by Alexey Proskuryakov.
     8
     9        * TestWebKitAPI/ios/mainIOS.mm:
     10        (main): Explicitly exit the testing process.
     11
    1122021-05-12  Chris Dumez  <cdumez@apple.com>
    213
  • trunk/Tools/TestWebKitAPI/ios/mainIOS.mm

    r276328 r277387  
    5454    }
    5555
    56     return passed ? EXIT_SUCCESS : EXIT_FAILURE;
     56    // FIXME: Work-around for <rdar://problem/77922262>
     57    exit(passed ? EXIT_SUCCESS : EXIT_FAILURE);
    5758}
Note: See TracChangeset for help on using the changeset viewer.