Skip to content

Commit

Permalink
Revert "Add --standalone for Xcode 11 and greater"
Browse files Browse the repository at this point in the history
This reverts commit f3d8aae.
  • Loading branch information
jerrymarino committed Aug 1, 2019
1 parent f3d8aae commit a54b6f2
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions test_runner/logic_test_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,14 +48,9 @@ def RunLogicTestOnSim(
for key in env_vars:
simctl_env_vars[_SIMCTL_ENV_VAR_PREFIX + key] = env_vars[key]
simctl_env_vars['NSUnbufferedIO'] = 'YES'

command = ['xcrun', 'simctl', 'spawn']
if xcode_info_util.GetXcodeVersionNumber() >= 1100:
command.extend('--standalone')

command += [sim_id,
command = [
'xcrun', 'simctl', 'spawn', '--standalone', sim_id,
xcode_info_util.GetXctestToolPath(ios_constants.SDK.IPHONESIMULATOR)]

if args:
command += args
if not tests_to_run:
Expand Down

0 comments on commit a54b6f2

Please sign in to comment.