diff options
author | Cristina Pauna <cristina.pauna@enea.com> | 2017-04-05 17:13:49 +0300 |
---|---|---|
committer | Morgan Richomme <morgan.richomme@orange.com> | 2017-04-07 06:47:35 +0000 |
commit | 05fcb048d456b088ce79f01eb1cd36ba907845d4 (patch) | |
tree | de32c0e0e247e6e22bccc95bb8e3a55b9def73ad | |
parent | aa616ab690c8408de17adaebd30078a33d161b7c (diff) |
Increase ram for tempest tests (aarch64)
The following tests fail on armband because the VM cannot boot.
tempest.api.compute.servers.test_server_actions.
ServerActionsTestJSON.test_reboot_server_hard
tempest.scenario.test_network_basic_ops.
TestNetworkBasicOps.test_network_basic_ops
tempest.scenario.test_volume_boot_pattern.
TestVolumeBootPattern.test_volume_boot_pattern
tempest.scenario.test_volume_boot_pattern.
TestVolumeBootPatternV2.test_volume_boot_pattern
The reason for the failure is that the 128 ram is insufficient for the
image to boot. The fix consists in increasing the ram to 256
JIRA: ARMBAND-61
Change-Id: I5be1a44a8038b4952cca100511e8d08b7a37681c
Signed-off-by: Cristina Pauna <cristina.pauna@enea.com>
(cherry picked from commit 5a417f076549941e0dae176849045aab32bf0be5)
-rw-r--r-- | functest/ci/rally_aarch64_patch.conf | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/functest/ci/rally_aarch64_patch.conf b/functest/ci/rally_aarch64_patch.conf index a49588bf8..e5cae8137 100644 --- a/functest/ci/rally_aarch64_patch.conf +++ b/functest/ci/rally_aarch64_patch.conf @@ -1,5 +1,5 @@ img_name_regex = ^TestVM$ img_url = http://download.cirros-cloud.net/daily/20161201/cirros-d161201-aarch64-disk.img -flavor_ref_ram = 128 +flavor_ref_ram = 256 flavor_ref_alt_ram = 256 -heat_instance_type_ram = 128 +heat_instance_type_ram = 256 |