Skip to content

Commit e03073f

Browse files
authored
Ensure that iOS test re-runs don't try to spawn a process. (#122994)
Adds the --single-process option to the iOS test runner to ensure re-runs execute in the same process.
1 parent ce39d3c commit e03073f

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

iOS/testbed/iOSTestbedTests/iOSTestbedTests.m

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ - (void)testPython {
1515
const char *argv[] = {
1616
"iOSTestbed", // argv[0] is the process that is running.
1717
"-uall", // Enable all resources
18+
"--single-process", // always run all tests sequentially in a single process
1819
"--rerun", // Re-run failed tests in verbose mode
1920
"-W", // Display test output on failure
2021
// To run a subset of tests, add the test names below; e.g.,

0 commit comments

Comments
 (0)