diff --git a/tests/test_port_dpb.py b/tests/test_port_dpb.py index 676d6a34d228..3fb74de8b194 100644 --- a/tests/test_port_dpb.py +++ b/tests/test_port_dpb.py @@ -18,7 +18,6 @@ maxBreakOut = 4 @pytest.mark.usefixtures('dpb_setup_fixture') -@pytest.mark.xfail(reason="sonic cfggen bug: buildimage#5263") class TestPortDPB(object): ''' diff --git a/tests/test_port_dpb_acl.py b/tests/test_port_dpb_acl.py index e16975d5e2d3..f22c304a1910 100644 --- a/tests/test_port_dpb_acl.py +++ b/tests/test_port_dpb_acl.py @@ -9,7 +9,6 @@ @pytest.mark.usefixtures('dpb_setup_fixture') -@pytest.mark.xfail(reason="sonic cfggen bug: buildimage#5263") class TestPortDPBAcl(object): def test_acl_table_empty_port_list(self, dvs_acl): # Create ACL table "test" and bind it to Ethernet0 diff --git a/tests/test_port_dpb_vlan.py b/tests/test_port_dpb_vlan.py index c4350f0da3ca..df03a5ecf96c 100644 --- a/tests/test_port_dpb_vlan.py +++ b/tests/test_port_dpb_vlan.py @@ -5,7 +5,6 @@ @pytest.mark.usefixtures('dpb_setup_fixture') @pytest.mark.usefixtures('dvs_vlan_manager') -@pytest.mark.xfail(reason="sonic cfggen bug: buildimage#5263") class TestPortDPBVlan(object): def check_syslog(self, dvs, marker, log, expected_cnt): (exitcode, num) = dvs.runcmd(['sh', '-c', "awk \'/%s/,ENDFILE {print;}\' /var/log/syslog | grep \"%s\" | wc -l" % (marker, log)])