aboutsummaryrefslogtreecommitdiffstats
path: root/resources
AgeCommit message (Expand)AuthorFilesLines
2019-05-10Report: Add message if no oper data is presentTibor Frank1-1/+1
2019-05-10CSIT-1488: Add data to the Report 1904Tibor Frank1-6/+8
2019-05-10Report: VPP_func update 2Jan Gelety1-2/+3
2019-05-10Report: Hide wrkTibor Frank1-117/+117
2019-05-09Remove old VPP Restart sequencePeter Mikus4-98/+13
2019-05-09Report: Remove DenvertonTibor Frank1-850/+850
2019-05-09Report: Remove LigatoTibor Frank1-1063/+1062
2019-05-09CSIT-1488: Add data to the Report 1904Tibor Frank2-44/+44
2019-05-09Add new higher density NF testsPeter Mikus5-0/+461
2019-05-09CSIT-1492: Add NF density testsTibor Frank1-2/+2
2019-05-09CSIT-1488: Add data to the Report 1904Tibor Frank1-1/+22
2019-05-09CSIT-1488: Add data to the Report 1904Tibor Frank1-1/+0
2019-05-09Report: NFV GraphsTibor Frank2-8/+15
2019-05-07Report: NFV GraphsTibor Frank1-18/+21
2019-05-07Report: NFV GraphsTibor Frank1-25/+33
2019-05-07Report: NFV GraphsTibor Frank1-3/+15
2019-05-07Report: NFV GraphsTibor Frank1-42/+42
2019-05-07Report: NFV GraphsTibor Frank1-41/+42
2019-05-07Report: Fix NFV GraphsTibor Frank1-2/+2
2019-05-07Report: NFV Service Density - color bar tilteTibor Frank1-1/+3
2019-05-07Fix typos in DUTsetup.pyVratko Polak1-2/+2
2019-05-07CSIT-1488: Add data to the Report 1904Tibor Frank1-6/+10
2019-05-06CSIT-1492: Add NF density tests: Models and dataTibor Frank1-36/+36
2019-05-06CSIT-1492: Add NF density tests: Models and dataTibor Frank1-0/+2
2019-05-06CSIT-1492: Add new NF density tests to reportTibor Frank2-203/+1467
2019-05-06CSIT-1493 VPP restart handling codePeter Mikus9-179/+173
2019-05-06CSIT-1488: Add data to the Report 1904Tibor Frank1-56/+73
2019-05-06Report: Configure the versionTibor Frank2-2/+2
2019-05-03CSIT-1488: Add data to the Report 1904Peter Mikus1-8/+83
2019-04-30CSIT-1488: Add data to the Report 1904Tibor Frank1-49/+47
2019-04-30Update report static contentPeter Mikus1-2/+2
2019-04-29CSIT-1488: Add data to the Report 1904Tibor Frank1-49/+163
2019-04-29Report: Configure the versionTibor Frank2-2/+2
2019-04-26NF density tests with dtc=0.5 and dtcr=2Peter Mikus8-180/+171
2019-04-26fix removal of build packages for honeycombMichal Cmarada1-2/+2
2019-04-26FIX: Change buffers per numa base on SMTPeter Mikus1-1/+3
2019-04-25CSIT-1488: Add data to the Report 1904Tibor Frank1-29/+16
2019-04-25CSIT-1489: Change graphs to display results by suite generatorTibor Frank1-1006/+2664
2019-04-24FIX: Crypto testsPeter Mikus1-0/+9
2019-04-24FIX: Large number of interfaces and worker threadsPeter Mikus3-18/+14
2019-04-24Move generate_tests earlier in entry scriptsVratko Polak4-8/+8
2019-04-23FIX: Create TAP interface after API changeJan Gelety1-1/+1
2019-04-23CSIT-1488: Add data to the Report 1904Tibor Frank1-1/+1
2019-04-23CSIT-1488: Add data to the Report 1904Tibor Frank1-497/+128
2019-04-23CSIT-1487: Configure PAL for the Report 1904Tibor Frank3-6/+6
2019-04-18FIX: eth_peer parameter after introducing OptionParamsPeter Mikus1-2/+2
2019-04-18OptionString: Do not convert None to non-empty stringVratko Polak1-2/+3
2019-04-18Report: Static contentTibor Frank1-2/+2
2019-04-18CSIT-1487: Configure PAL for the Report 1904Tibor Frank2-3194/+2237
2019-04-18CSIT-1482: Change trending graphsTibor Frank1-168/+168
n>vxlan_add_del_tunnel( is_ipv6=1, src_addr=cls.pg0.local_ip6n, dst_addr=cls.pg0.remote_ip6n, vni=cls.single_tunnel_bd) cls.vapi.sw_interface_set_l2_bridge(r.sw_if_index, bd_id=cls.single_tunnel_bd) cls.vapi.sw_interface_set_l2_bridge(cls.pg1.sw_if_index, bd_id=cls.single_tunnel_bd) # Setup vni 2 to test multicast flooding cls.n_ucast_tunnels = 10 cls.mcast_flood_bd = 2 cls.create_vxlan_flood_test_bd(cls.mcast_flood_bd, cls.n_ucast_tunnels) r = cls.vapi.vxlan_add_del_tunnel( mcast_sw_if_index=1, src_addr=cls.pg0.local_ip6n, dst_addr=cls.mcast_ip6n, vni=cls.mcast_flood_bd, is_ipv6=1) cls.vapi.sw_interface_set_l2_bridge(r.sw_if_index, bd_id=cls.mcast_flood_bd) cls.vapi.sw_interface_set_l2_bridge(cls.pg2.sw_if_index, bd_id=cls.mcast_flood_bd) # Setup vni 3 to test unicast flooding cls.ucast_flood_bd = 3 cls.create_vxlan_flood_test_bd(cls.ucast_flood_bd, cls.n_ucast_tunnels) cls.vapi.sw_interface_set_l2_bridge(cls.pg3.sw_if_index, bd_id=cls.ucast_flood_bd) except Exception: super(TestVxlan6, cls).tearDownClass() raise # Method to define VPP actions before tear down of the test case. # Overrides tearDown method in VppTestCase class. # @param self The object pointer. def tearDown(self): super(TestVxlan6, self).tearDown() if not self.vpp_dead: self.logger.info(self.vapi.cli("show bridge-domain 1 detail")) self.logger.info(self.vapi.cli("show bridge-domain 2 detail")) self.logger.info(self.vapi.cli("show bridge-domain 3 detail")) self.logger.info(self.vapi.cli("show vxlan tunnel")) if __name__ == '__main__': unittest.main(testRunner=VppTestRunner)