Skip to content

Commit 6dcb2ac

Browse files
authored
Merge pull request swiftlang#85 from graydon/cperf-fixes-oct-3
Revert "[run_cperf] Try turning off sandbox (hunting nondeterminism b…
2 parents 5480769 + 02cfdfa commit 6dcb2ac

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

run_cperf

+2-3
Original file line numberDiff line numberDiff line change
@@ -270,9 +270,8 @@ def execute_runner(instance, workspace, configs, args):
270270
'--swift-branch', args.swift_branch,
271271
'--add-swift-flags', flags,
272272
]
273-
# DEBUG: temporarily disable the sandbox feature here
274-
# if args.sandbox:
275-
# runner_command += get_sandbox_profile_flags()
273+
if args.sandbox:
274+
runner_command += get_sandbox_profile_flags()
276275
if args.verbose:
277276
runner_command += ["--verbose"]
278277
common.check_execute(runner_command, timeout=9999999)

0 commit comments

Comments
 (0)