Skip to content

Commit 5480769

Browse files
authored
Merge pull request swiftlang#84 from graydon/cperf-fixes-oct-3
[run_cperf] Try turning off sandbox (hunting nondeterminism bug)
2 parents c816214 + d8672b9 commit 5480769

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

run_cperf

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

0 commit comments

Comments
 (0)