mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 06:01:57 +00:00
9d0b4ad82d
Add a variable RUN_IN_NETNS if the user wants to run all the selected tests in namespace in parallel. With this, we can save a lot of testing time. Note that some tests may not fit to run in namespace, e.g. net/drop_monitor_tests.sh, as the dwdump needs to be run in init ns. I also added another parameter -p to make all the logs reported separately instead of mixing them in the stdout or output.log. Nit: the NUM in run_one is not used, rename it to test_num. Acked-by: David Ahern <dsahern@kernel.org> Signed-off-by: Hangbin Liu <liuhangbin@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
107 lines
2.5 KiB
Bash
Executable File
107 lines
2.5 KiB
Bash
Executable File
#!/bin/sh
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Run installed kselftest tests.
|
|
#
|
|
BASE_DIR=$(realpath $(dirname $0))
|
|
cd $BASE_DIR
|
|
TESTS="$BASE_DIR"/kselftest-list.txt
|
|
if [ ! -r "$TESTS" ] ; then
|
|
echo "$0: Could not find list of tests to run ($TESTS)" >&2
|
|
available=""
|
|
else
|
|
available="$(cat "$TESTS")"
|
|
fi
|
|
|
|
. ./kselftest/runner.sh
|
|
ROOT=$PWD
|
|
|
|
usage()
|
|
{
|
|
cat <<EOF
|
|
Usage: $0 [OPTIONS]
|
|
-s | --summary Print summary with detailed log in output.log (conflict with -p)
|
|
-p | --per_test_log Print test log in /tmp with each test name (conflict with -s)
|
|
-t | --test COLLECTION:TEST Run TEST from COLLECTION
|
|
-c | --collection COLLECTION Run all tests from COLLECTION
|
|
-l | --list List the available collection:test entries
|
|
-d | --dry-run Don't actually run any tests
|
|
-n | --netns Run each test in namespace
|
|
-h | --help Show this usage info
|
|
-o | --override-timeout Number of seconds after which we timeout
|
|
EOF
|
|
exit $1
|
|
}
|
|
|
|
COLLECTIONS=""
|
|
TESTS=""
|
|
dryrun=""
|
|
kselftest_override_timeout=""
|
|
while true; do
|
|
case "$1" in
|
|
-s | --summary)
|
|
logfile="$BASE_DIR"/output.log
|
|
cat /dev/null > $logfile
|
|
shift ;;
|
|
-p | --per-test-log)
|
|
per_test_logging=1
|
|
shift ;;
|
|
-t | --test)
|
|
TESTS="$TESTS $2"
|
|
shift 2 ;;
|
|
-c | --collection)
|
|
COLLECTIONS="$COLLECTIONS $2"
|
|
shift 2 ;;
|
|
-l | --list)
|
|
echo "$available"
|
|
exit 0 ;;
|
|
-d | --dry-run)
|
|
dryrun="echo"
|
|
shift ;;
|
|
-n | --netns)
|
|
RUN_IN_NETNS=1
|
|
shift ;;
|
|
-o | --override-timeout)
|
|
kselftest_override_timeout="$2"
|
|
shift 2 ;;
|
|
-h | --help)
|
|
usage 0 ;;
|
|
"")
|
|
break ;;
|
|
*)
|
|
usage 1 ;;
|
|
esac
|
|
done
|
|
|
|
# Add all selected collections to the explicit test list.
|
|
if [ -n "$COLLECTIONS" ]; then
|
|
for collection in $COLLECTIONS ; do
|
|
found="$(echo "$available" | grep "^$collection:")"
|
|
if [ -z "$found" ] ; then
|
|
echo "No such collection '$collection'" >&2
|
|
exit 1
|
|
fi
|
|
TESTS="$TESTS $found"
|
|
done
|
|
fi
|
|
# Replace available test list with explicitly selected tests.
|
|
if [ -n "$TESTS" ]; then
|
|
valid=""
|
|
for test in $TESTS ; do
|
|
found="$(echo "$available" | grep "^${test}$")"
|
|
if [ -z "$found" ] ; then
|
|
echo "No such test '$test'" >&2
|
|
exit 1
|
|
fi
|
|
valid="$valid $found"
|
|
done
|
|
available="$(echo "$valid" | sed -e 's/ /\n/g')"
|
|
fi
|
|
|
|
collections=$(echo "$available" | cut -d: -f1 | sort | uniq)
|
|
for collection in $collections ; do
|
|
[ -w /dev/kmsg ] && echo "kselftest: Running tests in $collection" >> /dev/kmsg
|
|
tests=$(echo "$available" | grep "^$collection:" | cut -d: -f2)
|
|
($dryrun cd "$collection" && $dryrun run_many $tests)
|
|
done
|