[3.13] Ensure that iOS test re-runs don't try to spawn a process. (GH-122994) (#123368)

Ensure that iOS test re-runs don't try to spawn a process. (GH-122994)

Adds the --single-process option to the iOS test runner to ensure re-runs execute in the same process.
(cherry picked from commit e03073ff20)

Co-authored-by: Russell Keith-Magee <russell@keith-magee.com>
This commit is contained in:
Miss Islington (bot) 2024-08-27 02:53:05 +02:00 committed by GitHub
parent 30f6cc75e9
commit fa21b3b8ee
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 0 deletions

View File

@ -15,6 +15,7 @@
const char *argv[] = { const char *argv[] = {
"iOSTestbed", // argv[0] is the process that is running. "iOSTestbed", // argv[0] is the process that is running.
"-uall", // Enable all resources "-uall", // Enable all resources
"--single-process", // always run all tests sequentially in a single process
"--rerun", // Re-run failed tests in verbose mode "--rerun", // Re-run failed tests in verbose mode
"-W", // Display test output on failure "-W", // Display test output on failure
// To run a subset of tests, add the test names below; e.g., // To run a subset of tests, add the test names below; e.g.,