From: Ondrej Lichtner olichtne@redhat.com
In two tasks the product_name alias was forgotten, this patch fixes that.
Signed-off-by: Ondrej Lichtner olichtne@redhat.com --- recipes/regression_tests/phase1/virtual_bridge_vlan_in_host.py | 2 ++ recipes/regression_tests/phase2/virtual_ovs_bridge_vlan_in_host.py | 2 ++ 2 files changed, 4 insertions(+)
diff --git a/recipes/regression_tests/phase1/virtual_bridge_vlan_in_host.py b/recipes/regression_tests/phase1/virtual_bridge_vlan_in_host.py index 1b0b119..d32b1e0 100644 --- a/recipes/regression_tests/phase1/virtual_bridge_vlan_in_host.py +++ b/recipes/regression_tests/phase1/virtual_bridge_vlan_in_host.py @@ -9,6 +9,8 @@ from lnst.Controller.PerfRepoUtils import parse_id_mapping, get_id mapping_file = ctl.get_alias("mapping_file") mapping = parse_id_mapping(mapping_file)
+product_name = ctl.get_alias("product_name") + tcp_ipv4_id = get_id(mapping, "tcp_ipv4_id") tcp_ipv6_id = get_id(mapping, "tcp_ipv6_id") udp_ipv4_id = get_id(mapping, "udp_ipv4_id") diff --git a/recipes/regression_tests/phase2/virtual_ovs_bridge_vlan_in_host.py b/recipes/regression_tests/phase2/virtual_ovs_bridge_vlan_in_host.py index 118250b..d15f2be 100644 --- a/recipes/regression_tests/phase2/virtual_ovs_bridge_vlan_in_host.py +++ b/recipes/regression_tests/phase2/virtual_ovs_bridge_vlan_in_host.py @@ -9,6 +9,8 @@ from lnst.Controller.PerfRepoUtils import parse_id_mapping, get_id mapping_file = ctl.get_alias("mapping_file") mapping = parse_id_mapping(mapping_file)
+product_name = ctl.get_alias("product_name") + tcp_ipv4_id = get_id(mapping, "tcp_ipv4_id") tcp_ipv6_id = get_id(mapping, "tcp_ipv6_id") udp_ipv4_id = get_id(mapping, "udp_ipv4_id")
Acked-by: Jan Tluka jtluka@redhat.com
Mon, Aug 10, 2015 at 02:34:25PM CEST, olichtne@redhat.com wrote:
From: Ondrej Lichtner olichtne@redhat.com
In two tasks the product_name alias was forgotten, this patch fixes that.
Signed-off-by: Ondrej Lichtner olichtne@redhat.com
recipes/regression_tests/phase1/virtual_bridge_vlan_in_host.py | 2 ++ recipes/regression_tests/phase2/virtual_ovs_bridge_vlan_in_host.py | 2 ++ 2 files changed, 4 insertions(+)
diff --git a/recipes/regression_tests/phase1/virtual_bridge_vlan_in_host.py b/recipes/regression_tests/phase1/virtual_bridge_vlan_in_host.py index 1b0b119..d32b1e0 100644 --- a/recipes/regression_tests/phase1/virtual_bridge_vlan_in_host.py +++ b/recipes/regression_tests/phase1/virtual_bridge_vlan_in_host.py @@ -9,6 +9,8 @@ from lnst.Controller.PerfRepoUtils import parse_id_mapping, get_id mapping_file = ctl.get_alias("mapping_file") mapping = parse_id_mapping(mapping_file)
+product_name = ctl.get_alias("product_name")
tcp_ipv4_id = get_id(mapping, "tcp_ipv4_id") tcp_ipv6_id = get_id(mapping, "tcp_ipv6_id") udp_ipv4_id = get_id(mapping, "udp_ipv4_id") diff --git a/recipes/regression_tests/phase2/virtual_ovs_bridge_vlan_in_host.py b/recipes/regression_tests/phase2/virtual_ovs_bridge_vlan_in_host.py index 118250b..d15f2be 100644 --- a/recipes/regression_tests/phase2/virtual_ovs_bridge_vlan_in_host.py +++ b/recipes/regression_tests/phase2/virtual_ovs_bridge_vlan_in_host.py @@ -9,6 +9,8 @@ from lnst.Controller.PerfRepoUtils import parse_id_mapping, get_id mapping_file = ctl.get_alias("mapping_file") mapping = parse_id_mapping(mapping_file)
+product_name = ctl.get_alias("product_name")
tcp_ipv4_id = get_id(mapping, "tcp_ipv4_id") tcp_ipv6_id = get_id(mapping, "tcp_ipv6_id") udp_ipv4_id = get_id(mapping, "udp_ipv4_id") -- 2.5.0
LNST-developers mailing list LNST-developers@lists.fedorahosted.org https://lists.fedorahosted.org/mailman/listinfo/lnst-developers
lnst-developers@lists.fedorahosted.org