From 887ca8e9f8df2df65bf4fef4338704c35fdb2545 Mon Sep 17 00:00:00 2001 From: Andreas Scheuring Date: Tue, 3 Feb 2015 17:56:12 +0100 Subject: Add sec-grp-rule for ipv6-icmp to enable ping6 between instances The tempest testcase test_network_v6 checks if an ipv6 ping between instance is possible. But therefore no security-group- rule is being set up, to allow such a ping. The test fails. This issue does not apply to a test that runs with the cirros image, as cirros does not have ipv6 utils installed. There is a if clause in the testcase, that skips this ping if the util ping6 is not available. Change-Id: Ia3fbe771cde8893e9eb3fc43b187435bd0dd1dbf Closes-Bug: #1417584 --- tempest/scenario/manager.py | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'tempest/scenario/manager.py') diff --git a/tempest/scenario/manager.py b/tempest/scenario/manager.py index 5b092c31c..a08188336 100644 --- a/tempest/scenario/manager.py +++ b/tempest/scenario/manager.py @@ -907,6 +907,11 @@ class NetworkScenarioTest(ScenarioTest): dict( # ping protocol='icmp', + ), + dict( + # ipv6-icmp for ping6 + protocol='icmp', + ethertype='IPv6', ) ] for ruleset in rulesets: -- cgit v1.2.1