From 4d5165bd64a1994fbd5f3b863ae9104c790809ad Mon Sep 17 00:00:00 2001 From: Abrar Ahmed Date: Thu, 23 Jan 2025 10:35:12 -0800 Subject: [PATCH] Add logging to validate file was written to for test listing Differential Revision: D68516703 fbshipit-source-id: 18363d2598c60d3d2e9889eecb454eacec117d5f --- Shims/Shimulator/TestReporterShim/XCTestReporterShim.m | 1 + 1 file changed, 1 insertion(+) diff --git a/Shims/Shimulator/TestReporterShim/XCTestReporterShim.m b/Shims/Shimulator/TestReporterShim/XCTestReporterShim.m index 5d18d2f85..dae0a211f 100644 --- a/Shims/Shimulator/TestReporterShim/XCTestReporterShim.m +++ b/Shims/Shimulator/TestReporterShim/XCTestReporterShim.m @@ -636,6 +636,7 @@ static void listBundle(NSString *testBundlePath, NSString *outputFile) // Close the file so the other end knows this is the end of the input. bool fileClosedSuccessfully = [fileHandle closeAndReturnError:&error]; NSCAssert(fileClosedSuccessfully, @"Failed to close file with test list", error); + NSLog(@"Completed writing test list to %@", outputFile); exit(TestShimExitCodeSuccess); }