Skip to content

Commit 12a70d3

Browse files
authored
Merge pull request swiftlang#76 from graydon/run-cperf-debugging-sep-30
[run_cperf] More debugging experiments.
2 parents 2464da9 + 1d02c6a commit 12a70d3

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

run_cperf

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ def main():
9898
args.output.close()
9999
shutil.copyfile(o, p)
100100

101-
common.check_execute(['find', workspace, '-ls'])
101+
common.check_execute(['find', os.getcwd(), '-ls'])
102102

103103
return regressions
104104

@@ -219,7 +219,7 @@ def get_stats_dir(instance, variant):
219219

220220

221221
def get_actual_config_and_flags(config, stats):
222-
flags = ("-stats-output-dir %s" % stats)
222+
flags = ("-v -j 1 -num-threads 1 -stats-output-dir '%s'" % stats)
223223
# Handle as a pseudo-configs
224224
if config == 'wmo-onone':
225225
flags += ' -wmo -Onone '
@@ -247,6 +247,7 @@ def execute_runner(instance, workspace, configs, args):
247247
runner_command = [
248248
'./runner.py',
249249
'--swiftc', swiftc_path,
250+
'--verbose',
250251
'--projects', projects,
251252
'--build-config', config,
252253
'--swift-version', '3',

0 commit comments

Comments
 (0)