diff options
author | PMR <pmr@pmr-lander> | 2019-10-13 07:58:27 +0000 |
---|---|---|
committer | PMR <pmr@pmr-lander> | 2019-10-13 07:58:27 +0000 |
commit | c8cefda883e251400b6ad1822318be8c14f6cefd (patch) | |
tree | be698f8d439a4798507f68165928fad149677179 | |
parent | 61683b4254d0c7ece0a5dec4eb144f342d784c93 (diff) | |
parent | 10d2cec8f7e27e7f09818b27e80bcf0a073ef15d (diff) |
Merge #373974 from ~sylvain-pineau/plainbox-provider-checkbox:fix-1844477
-rwxr-xr-x | bin/storage_test.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/storage_test.py b/bin/storage_test.py index dbc0552..4f363bc 100755 --- a/bin/storage_test.py +++ b/bin/storage_test.py @@ -81,7 +81,7 @@ def run_bonnie(test_dir, user='root'): free = free_space(test_dir) print('{}MB of free space avaialble'.format(free)) if (force_mem_mb * 2) > free: - force_mem_mb = free / 2 + force_mem_mb = free / 4 print('Forcing memory setting to {}MB'.format(force_mem_mb)) cmd = 'bonnie++ -d {} -u {} -r {}'.format(test_dir, user, force_mem_mb) print('+', cmd, flush=True) |