Commits


Gil authored and GitHub committed b1685197dbf
Fix GoogleTest failure mechanism on CI (#5444) Previously, a crash in a GoogleTest test would register as happening prior to XCTest being being fully set up, which would cause CI to report the error as a simulator startup failure. This made GoogleTest failures harder to diagnose, especially if it was due to flakes. Deferring error reporting until XCTest has started running prevents this error. * Defer running GoogleTest tests until XCTest has started * Rename ReportTestResult to XCTestMethod in FSTGoogleTestTests Also some cleanup. * Fix LogTest when running with logging enabled. This can happen if GoogleTest tests run after the integration tests. * Remove extraneous output from tests