forked from Minki/linux
76b903ee19
Add the beginnings of a testsuite for tc functionality in the kernel. These are a series of unit tests that use the tc executable and verify the success of those commands by checking both the exit codes and the output from tc's 'show' operation. To run the tests: # cd tools/testing/selftests/tc-testing # sudo ./tdc.py You can specify the tc executable to use with the -p argument on the command line or editing the 'TC' variable in tdc_config.py. Refer to the README for full details on how to run. The initial complement of test cases are limited mostly to tc actions. Test cases are most welcome; see the creating-testcases subdirectory for help in creating them. Signed-off-by: Lucas Bates <lucasb@mojatatu.com> Signed-off-by: Jamal Hadi Salim <jhs@mojatatu.com> Signed-off-by: David S. Miller <davem@davemloft.net>
18 lines
464 B
Python
18 lines
464 B
Python
"""
|
|
tdc_config.py - tdc user-specified values
|
|
|
|
Copyright (C) 2017 Lucas Bates <lucasb@mojatatu.com>
|
|
"""
|
|
|
|
# Dictionary containing all values that can be substituted in executable
|
|
# commands.
|
|
NAMES = {
|
|
# Substitute your own tc path here
|
|
'TC': '/sbin/tc',
|
|
# Name of veth devices to be created for the namespace
|
|
'DEV0': 'v0p0',
|
|
'DEV1': 'v0p1',
|
|
# Name of the namespace to use
|
|
'NS': 'tcut'
|
|
}
|