Skip to content

Commit

Permalink
SERVER-14818 disable file_allocator_bench suite too big for MCI
Browse files Browse the repository at this point in the history
  • Loading branch information
kangas committed Aug 22, 2014
1 parent 4752092 commit f7d36a2
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions buildscripts/perf_suite.py
Expand Up @@ -80,10 +80,15 @@ def configure_parser():
# its not worth overengineering
def make_suites(work_dir, report_dir):
return [
file_allocator_bench("16GB", ntrials=8, megabytes=1024*16,
path=work_dir, report_dir=report_dir),
# requires 128GB free in work_dir
# file_allocator_bench("16GB", ntrials=8, megabytes=1024*16,
# path=work_dir, report_dir=report_dir),

# requires 16GB free in work_dir
file_allocator_bench("1GB", ntrials=16, megabytes=1024,
path=work_dir, report_dir=report_dir),

# requires 4GB free in work_dir
file_allocator_bench("128MB", ntrials=32, megabytes=128,
path=work_dir, report_dir=report_dir)
]
Expand Down

0 comments on commit f7d36a2

Please sign in to comment.