diff options
author | Shuah Khan (Samsung OSG) <shuah@kernel.org> | 2018-05-04 11:17:35 -0600 |
---|---|---|
committer | Shuah Khan (Samsung OSG) <shuah@kernel.org> | 2018-05-30 15:29:06 -0600 |
commit | feb2d9a4d042b2540fa0803c9cbefe1ba6314984 (patch) | |
tree | 331aeab3322f68ca04af37750de86ece695d9d01 | |
parent | b26862450d74b2a17e22c5d7cdec1707d03b82b6 (diff) | |
download | linux-feb2d9a4d042b2540fa0803c9cbefe1ba6314984.tar.bz2 |
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/Makefile | 10 |
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 |