aboutsummaryrefslogtreecommitdiffstats
path: root/requirements.txt
AgeCommit message (Expand)AuthorFilesLines
2022-09-22PAL: Set Sphinx verson to 5.1.1 (latest)Tibor Frank1-2/+2
2022-09-14Requirements: Set version hdrhistogram==0.9.2Tibor Frank1-1/+1
2022-08-10feat(pip): set jinja2==3.0.3Tibor Frank1-1/+1
2022-08-08feat(pip): UpgradePeter Mikus1-42/+41
2021-12-15UTI: Export resultsVratko Polak1-2/+13
2021-06-10FIX: Pylint reducepmikus1-0/+2
2021-04-15requirements: Update Sphinx to the latest versionsTibor Frank1-23/+23
2021-04-08Ansible git movepmikus1-1/+1
2021-03-18Revert "Ubuntu 20.04: Bump dill version."Peter Mikus1-1/+1
2021-03-17Ubuntu 20.04: Bump dill version.Vratko Polak1-1/+1
2021-02-18Framework: SciPy upgradepmikus1-1/+1
2021-02-16Infra: Ansible 2.10Peter Mikus1-2/+2
2019-12-16FIX PIP requirement packagesPeter Mikus1-1/+3
2019-12-03FIX: Add ply also to global requirementsPeter Mikus1-0/+1
2019-11-29Python3: PIP requirementPeter Mikus1-48/+70
2019-03-14Papi: Back to python2, add aenumTibor Frank1-0/+1
2019-01-07Adding pip requirementsJan Gelety1-10/+19
2018-08-27Insert warning against editing in requirements.txtVratko Polak1-0/+34
2018-06-20Revert "CSIT-986: Use MLRsearch from pip"Peter Mikus1-1/+0
2018-06-18CSIT-986: Use MLRsearch from pipVratko Polak1-0/+1
2017-10-12FIX: Robotframework version.Peter Mikus1-1/+1
2017-10-09CSIT-768: Refactor Python container librariesPeter Mikus1-1/+1
2017-02-23Add pypcap python requirementMatej Klotton1-1/+1
2016-07-01Add missing libraries to requirementsPavel Kotucek1-0/+3
2016-04-05Setup and check honeycomb on all DUTsselias1-0/+1
2016-03-17DropRateSearch libraryMiroslav Miklus1-1/+1
2016-02-08New version of RF tests.Stefan Kobza1-0/+9
lass="p">| ... | DUT1 and DUT2 tested with 2p25GE NIC XXV710 by Intel with VF enabled. | ... | *[Ver] TG verification:* In MaxReceivedRate tests TG sends traffic\ | ... | at line rate and reports total received/sent packets over trial period. | ... | Test packets are generated by TG on | ... | links to DUTs. TG traffic profile contains two L3 flow-groups | ... | (flow-group per direction, 254 flows per flow-group) with all packets | ... | containing Ethernet header, IPv4 header with IP protocol=61 and static | ... | payload. MAC addresses are matching MAC addresses of the TG node | ... | interfaces. *** Variables *** # XXV710-DA2 bandwidth limit ~50Gbps/2=25Gbps | ${s_25G}= | ${25000000000} # XXV710-DA2 Mpps limit 37.5Mpps/2=18.75Mpps | ${s_18.75Mpps}= | ${18750000} # Traffic profile: | ${traffic_profile}= | trex-sl-3n-ethip4-ip4src254 *** Keywords *** | Local template | | [Documentation] | | ... | [Cfg] DUT runs L2 patch config with ${phy_cores} phy | | ... | core(s). | | ... | [Ver] Measure MaxReceivedRate for ${framesize}B frames using single\ | | ... | trial throughput test. | | ... | | ... | *Arguments:* | | ... | - framesize - Framesize in Bytes in integer or string (IMIX_v4_1). | | ... | Type: integer, string | | ... | - phy_cores - Number of physical cores. Type: integer | | ... | - rxq - Number of RX queues, default value: ${None}. Type: integer | | ... | | [Arguments] | ${framesize} | ${phy_cores} | ${rxq}=${None} | | ... | | Given Add worker threads and rxqueues to all DUTs | ${phy_cores} | ${rxq} | | And Add DPDK no PCI to all DUTs | | ${max_rate} | ${jumbo} = | Get Max Rate And Jumbo | | ... | ${s_25G} | ${framesize} | pps_limit=${s_18.75Mpps} | | And Apply startup configuration on all VPP DUTs | | When Initialize AVF interfaces | | And Initialize L2 patch | | Then Traffic should pass with maximum rate | | ... | ${max_rate}pps | ${framesize} | ${traffic_profile} *** Test Cases *** | tc01-64B-1c-avf-eth-l2patch-mrr | | [Tags] | 64B | 1C | | framesize=${64} | phy_cores=${1} | tc02-64B-2c-avf-eth-l2patch-mrr | | [Tags] | 64B | 2C | | framesize=${64} | phy_cores=${2} | tc03-64B-4c-avf-eth-l2patch-mrr | | [Tags] | 64B | 4C | | framesize=${64} | phy_cores=${4} | tc04-1518B-1c-avf-eth-l2patch-mrr | | [Tags] | 1518B | 1C | | framesize=${1518} | phy_cores=${1} | tc05-1518B-2c-avf-eth-l2patch-mrr | | [Tags] | 1518B | 2C | | framesize=${1518} | phy_cores=${2} | tc06-1518B-4c-avf-eth-l2patch-mrr | | [Tags] | 1518B | 4C | | framesize=${1518} | phy_cores=${4} | tc10-IMIX-1c-avf-eth-l2patch-mrr | | [Tags] | IMIX | 1C | | framesize=IMIX_v4_1 | phy_cores=${1} | tc11-IMIX-2c-avf-eth-l2patch-mrr | | [Tags] | IMIX | 2C | | framesize=IMIX_v4_1 | phy_cores=${2} | tc12-IMIX-4c-avf-eth-l2patch-mrr | | [Tags] | IMIX | 4C | | framesize=IMIX_v4_1 | phy_cores=${4}