mirror of
https://github.com/torvalds/linux.git
synced 2026-07-27 17:47:41 +02:00
selftests: rds: Add timeout flag to run.sh
Add a -t flag to run.sh to optionally override the default timeout. The --timeout flag is already supported in test.py, so just add the shorthand -t flag Signed-off-by: Allison Henderson <achender@kernel.org> Link: https://patch.msgid.link/20260504054143.4027538-5-achender@kernel.org Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
parent
5bdd59f906
commit
7d6a32e7cb
|
|
@ -12,7 +12,7 @@ kernel may optionally be configured to omit the coverage report as well.
|
|||
|
||||
USAGE:
|
||||
run.sh [-d logdir] [-l packet_loss] [-c packet_corruption]
|
||||
[-u packet_duplicate]
|
||||
[-u packet_duplicate] [-t timeout]
|
||||
|
||||
OPTIONS:
|
||||
-d Log directory. Defaults to tools/testing/selftests/net/rds/rds_logs
|
||||
|
|
@ -23,6 +23,8 @@ OPTIONS:
|
|||
|
||||
-u Simulates a percentage of packet duplication.
|
||||
|
||||
-t Test timeout. Defaults to tools/testing/selftests/net/rds/settings
|
||||
|
||||
EXAMPLE:
|
||||
|
||||
# Create a suitable gcov enabled .config
|
||||
|
|
|
|||
|
|
@ -154,8 +154,9 @@ LOG_DIR="$current_dir"/rds_logs
|
|||
PLOSS=0
|
||||
PCORRUPT=0
|
||||
PDUP=0
|
||||
TIMEOUT=$timeout
|
||||
GENERATE_GCOV_REPORT=1
|
||||
while getopts "d:l:c:u:" opt; do
|
||||
while getopts "d:l:c:u:t:" opt; do
|
||||
case ${opt} in
|
||||
d)
|
||||
LOG_DIR=${OPTARG}
|
||||
|
|
@ -166,12 +167,15 @@ while getopts "d:l:c:u:" opt; do
|
|||
c)
|
||||
PCORRUPT=${OPTARG}
|
||||
;;
|
||||
t)
|
||||
TIMEOUT=${OPTARG}
|
||||
;;
|
||||
u)
|
||||
PDUP=${OPTARG}
|
||||
;;
|
||||
:)
|
||||
echo "USAGE: run.sh [-d logdir] [-l packet_loss] [-c packet_corruption]" \
|
||||
"[-u packet_duplicate]"
|
||||
"[-u packet_duplicate] [-t timeout]"
|
||||
exit 1
|
||||
;;
|
||||
?)
|
||||
|
|
@ -198,7 +202,8 @@ echo running RDS tests...
|
|||
echo Traces will be logged to "$TRACE_FILE"
|
||||
rm -f "$TRACE_FILE"
|
||||
strace -T -tt -o "$TRACE_FILE" python3 "$(dirname "$0")/test.py" \
|
||||
--timeout "$timeout" -d "$LOG_DIR" -l "$PLOSS" -c "$PCORRUPT" -u "$PDUP"
|
||||
-t "$TIMEOUT" -d "$LOG_DIR" -l "$PLOSS" -c "$PCORRUPT" \
|
||||
-u "$PDUP"
|
||||
|
||||
test_rc=$?
|
||||
dmesg > "${LOG_DIR}/dmesg.out"
|
||||
|
|
|
|||
|
|
@ -83,7 +83,7 @@ parser = argparse.ArgumentParser(description="init script args",
|
|||
formatter_class=argparse.ArgumentDefaultsHelpFormatter)
|
||||
parser.add_argument("-d", "--logdir", action="store",
|
||||
help="directory to store logs", default="/tmp")
|
||||
parser.add_argument('--timeout', help="timeout to terminate hung test",
|
||||
parser.add_argument('-t', '--timeout', help="timeout to terminate hung test",
|
||||
type=int, default=0)
|
||||
parser.add_argument('-l', '--loss', help="Simulate tcp packet loss",
|
||||
type=int, default=0)
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user