Merge "framework: Add reworked framework to repo"
[vswitchperf.git] / conf / 01_testcases.conf
1 # Copyright 2015 Intel Corporation.
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #   http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 # This file describes a list of testcases.  Each testcase is described as a
16 # dictionary in a list of dictionaries.
17 #
18 # The dictionary keys, their meanings and available values are:
19 #
20 # "Name": "phy2phy_burst",         # A human-readable string identifying the
21 #                                  # test.
22 # "Traffic Type": "rfc2544",       # One of the supported traffic types.
23 # "Collector": "cpu, memory",      # Comma-separated list of Collectors to
24 #                                  # be activated during this test.
25 # "Deployment": "p2p",             # One of the supported deployment scenarios.
26 # "Description": "Lorem ipsum..."  # Optional. A human-readable string
27 #                                  # describing the test.
28 # "MultiStream": [true|false],
29 # "Test Modifier": [FrameMod|Other],
30 # "Dependency": [Test_Case_Name |None],
31
32 PERFORMANCE_TESTS = [
33     {
34         "Name": "phy2phy_tput",
35         "Traffic Type": "rfc2544",
36         "Collector": "cpu",
37         "Deployment": "p2p",
38         "Description": "RFC2544 Throughput Phy2Phy Loopback",
39     },
40 ]