01087375a7c38eec335ab518c8dd285c7c0858a1
[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           # Name of the namespace to use
16           'NS': 'tcut'
17         }