mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-02-21 08:30:42 -05:00
HDS/HDS-thresh features were updated/implemented. so add some tests for these features. HDS tests are the same with `ethtool -G eth0 tcp-data-split <on | off | auto >` but `auto` depends on driver specification. So, it doesn't include `auto` case. HDS-thresh tests are same with `ethtool -G eth0 hds-thresh <0 - MAX>` It includes both 0 and MAX cases. It also includes exceed case, MAX + 1. Signed-off-by: Taehee Yoo <ap420073@gmail.com> Link: https://patch.msgid.link/20250114142852.3364986-11-ap420073@gmail.com Signed-off-by: Jakub Kicinski <kuba@kernel.org>
19 lines
320 B
Makefile
19 lines
320 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
TEST_INCLUDES := $(wildcard lib/py/*.py) \
|
|
$(wildcard lib/sh/*.sh) \
|
|
../../net/net_helper.sh \
|
|
../../net/lib.sh \
|
|
|
|
TEST_PROGS := \
|
|
netcons_basic.sh \
|
|
netcons_overflow.sh \
|
|
ping.py \
|
|
queues.py \
|
|
stats.py \
|
|
shaper.py \
|
|
hds.py \
|
|
# end of TEST_PROGS
|
|
|
|
include ../../lib.mk
|