aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorShuah Khan (Samsung OSG) <shuah@kernel.org>2018-05-04 11:17:35 -0600
committerShuah Khan (Samsung OSG) <shuah@kernel.org>2018-05-30 15:29:06 -0600
commitfeb2d9a4d042b2540fa0803c9cbefe1ba6314984 (patch)
tree331aeab3322f68ca04af37750de86ece695d9d01
parentselftests: lib: return Kselftest Skip code for skipped tests (diff)
downloadlinux-dev-feb2d9a4d042b2540fa0803c9cbefe1ba6314984.tar.xz
linux-dev-feb2d9a4d042b2540fa0803c9cbefe1ba6314984.zip
selftests: locking: add Makefile for locking test
Add Makefile for locking test. Signed-off-by: Shuah Khan (Samsung OSG) <shuah@kernel.org>
-rw-r--r--tools/testing/selftests/locking/Makefile10
1 files changed, 10 insertions, 0 deletions
diff --git a/tools/testing/selftests/locking/Makefile b/tools/testing/selftests/locking/Makefile
new file mode 100644
index 000000000000..6e7761ab3536
--- /dev/null
+++ b/tools/testing/selftests/locking/Makefile
@@ -0,0 +1,10 @@
+# SPDX-License-Identifier: GPL-2.0
+#
+# Makefile for locking/ww_mutx selftests
+
+# No binaries, but make sure arg-less "make" doesn't trigger "run_tests"
+all:
+
+TEST_PROGS := ww_mutex.sh
+
+include ../lib.mk