From: Paul E. McKenney Date: Thu, 11 Apr 2019 21:51:13 +0000 (-0700) Subject: rcutorture: Provide rudimentary Makefile X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=2456a8562b296453b4cdce8b6928e3f91e39fefc;p=linux.git rcutorture: Provide rudimentary Makefile This commit provides a rudimentary Makefile that runs a 10-minute rcutorture test on scenario TREE01. This must be run on a system capable of spawning virtual machines and with everything installed to permit building Linux kernels. Reported-by: Shuah Khan Signed-off-by: Paul E. McKenney --- diff --git a/tools/testing/selftests/rcutorture/Makefile b/tools/testing/selftests/rcutorture/Makefile new file mode 100644 index 0000000000000..5202dc6662062 --- /dev/null +++ b/tools/testing/selftests/rcutorture/Makefile @@ -0,0 +1,3 @@ +# SPDX-License-Identifier: GPL-2.0+ +all: + ( cd ../../../..; tools/testing/selftests/rcutorture/bin/kvm.sh --duration 10 --configs TREE01 )