Skip to content
Snippets Groups Projects
Commit a0e7cec8 authored by Michael Hanselmann's avatar Michael Hanselmann
Browse files

Pass --os-size and --swap-size to burnin during QA.

Reviewed-by: iustinp
parent 78ac0e0d
No related branches found
No related tags found
No related merge requests found
...@@ -333,7 +333,10 @@ def TestClusterBurnin(): ...@@ -333,7 +333,10 @@ def TestClusterBurnin():
try: try:
script = UploadFile(master['primary'], '../tools/burnin') script = UploadFile(master['primary'], '../tools/burnin')
try: try:
cmd = [script, '--os=%s' % cfg['os']] cmd = [script,
'--os=%s' % cfg['os'],
'--os-size=%s' % cfg['os-size'],
'--swap-size=%s' % cfg['swap-size']]
cmd += [inst['name'] for inst in instances] cmd += [inst['name'] for inst in instances]
AssertEqual(StartSSH(master['primary'], AssertEqual(StartSSH(master['primary'],
utils.ShellQuoteArgs(cmd)).wait(), 0) utils.ShellQuoteArgs(cmd)).wait(), 0)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment