Skip to content

Commit 6fa0771

Browse files
authored
Merge pull request #554 from ahoppen/pr/run-tests-in-parallel
Only run tests in parallel on Linux again
2 parents 066afa5 + 215de9a commit 6fa0771

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

Utilities/build-script-helper.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -121,10 +121,7 @@ def handle_invocation(swift_exec, args):
121121
print('Cleaning ' + tests)
122122
shutil.rmtree(tests, ignore_errors=True)
123123
test_args = swiftpm_args
124-
# Running tests in parallel causes nondeterministic failures on Linux (rdar://92260631).
125-
# Only enable parallel testing on Darwin.
126-
if platform.system() == 'Darwin':
127-
test_args += ['--parallel']
124+
test_args += ['--parallel']
128125
swiftpm('test', swift_exec, test_args, env)
129126
elif args.action == 'install':
130127
bin_path = swiftpm_bin_path(swift_exec, swiftpm_args, env)

0 commit comments

Comments
 (0)