selftests: Introduce a new test case to tc testsuite
[platform/kernel/linux-exynos.git] / tools / testing / selftests / tc-testing / tdc_config.py
1 """
2 tdc_config.py - tdc user-specified values
3
4 Copyright (C) 2017 Lucas Bates <lucasb@mojatatu.com>
5 """
6
7 # Dictionary containing all values that can be substituted in executable
8 # commands.
9 NAMES = {
10           # Substitute your own tc path here
11           'TC': '/sbin/tc',
12           # Name of veth devices to be created for the namespace
13           'DEV0': 'v0p0',
14           'DEV1': 'v0p1',
15           'DEV2': '',
16           'BATCH_FILE': './batch.txt',
17           # Name of the namespace to use
18           'NS': 'tcut'
19         }