mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-24 04:50:53 +07:00
2b9843fbe1
Add tdc to existing kselftest infrastructure so that it can be run with existing kselftests. TDC now generates objects in objdir/kselftest without cluttering main objdir, leaves source directory clean, and installs correctly in kselftest_install, properly adding itself to run_kselftest.sh script. Add tc-testing as a target of selftests/Makefile. Create tdc.sh to run tdc.py targets with correct arguments. To support single target from selftest/Makefile, combine tc-testing/bpf/Makefile and tc-testing/Makefile. Move action.c up a directory to tc-testing/. Tested with: make O=/tmp/{objdir} TARGETS="tc-testing" kselftest cd /tmp/{objdir} cd kselftest cd tc-testing ./tdc.sh make -C tools/testing/selftests/ TARGETS=tc-testing run_tests make TARGETS="tc-testing" kselftest cd tools/testing/selftests ./kselftest_install.sh /tmp/exampledir My VM doesn't run all the kselftests so I commented out all except my target and net/pmtu.sh then: cd /tmp/exampledir && ./run_kselftest.sh Co-developed-by: Davide Caratti <dcaratti@redhat.com> Signed-off-by: Davide Caratti <dcaratti@redhat.com> Signed-off-by: Briana Oursler <briana.oursler@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
43 lines
1.0 KiB
Python
43 lines
1.0 KiB
Python
"""
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
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',
|
|
# Substitute your own ip path here
|
|
'IP': '/sbin/ip',
|
|
# Name of veth devices to be created for the namespace
|
|
'DEV0': 'v0p0',
|
|
'DEV1': 'v0p1',
|
|
'DEV2': '',
|
|
'DUMMY': 'dummy1',
|
|
'BATCH_FILE': './batch.txt',
|
|
'BATCH_DIR': 'tmp',
|
|
# Length of time in seconds to wait before terminating a command
|
|
'TIMEOUT': 12,
|
|
# Name of the namespace to use
|
|
'NS': 'tcut',
|
|
# Directory containing eBPF test programs
|
|
'EBPFDIR': './'
|
|
}
|
|
|
|
|
|
ENVIR = { }
|
|
|
|
# put customizations in tdc_config_local.py
|
|
try:
|
|
from tdc_config_local import *
|
|
except ImportError as ie:
|
|
pass
|
|
|
|
try:
|
|
NAMES.update(EXTRA_NAMES)
|
|
except NameError as ne:
|
|
pass
|