[GIT PULL] kselftest update for 4.17-rc2

From: Shuah Khan
Date: Fri Apr 20 2018 - 16:34:00 EST


Hi Linus,

Please pull the following Kselftest update for 4.17-rc2


This Kselftest update for 4.17-rc2 consists of a fix from Michael Ellerman
to not run dnotify_test by default to prevent Kselftest running forever.

diff is attached.

thanks,
-- Shuah

-----------------------------------------------------------------------------------
The following changes since commit 60cc43fc888428bb2f18f08997432d426a243338:

Linux 4.17-rc1 (2018-04-15 18:24:20 -0700)

are available in the git repository at:

git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest tags/linux-kselftest-4.17-rc2

for you to fetch changes up to 8bf24e8319613bbe950d4188682b3a0d9441b76b:

selftests/filesystems: Don't run dnotify_test by default (2018-04-17 17:01:16 -0600)

----------------------------------------------------------------
linux-kselftest-4.17-rc2

This Kselftest update for 4.17-rc2 consists of a fix from Michael Ellerman
to not run dnotify_test by default to prevent Kselftest running forever.

----------------------------------------------------------------
Michael Ellerman (1):
selftests/filesystems: Don't run dnotify_test by default

tools/testing/selftests/filesystems/Makefile | 8 +++-----
1 file changed, 3 insertions(+), 5 deletions(-)

-----------------------------------------------------------------------------------
diff --git a/tools/testing/selftests/filesystems/Makefile b/tools/testing/selftests/filesystems/Makefile
index 4e6d09fb166f..5c7d7001ad37 100644
--- a/tools/testing/selftests/filesystems/Makefile
+++ b/tools/testing/selftests/filesystems/Makefile
@@ -1,8 +1,6 @@
# SPDX-License-Identifier: GPL-2.0
-TEST_PROGS := dnotify_test devpts_pts
-all: $(TEST_PROGS)

-include ../lib.mk
+TEST_GEN_PROGS := devpts_pts
+TEST_GEN_PROGS_EXTENDED := dnotify_test

-clean:
- rm -fr $(TEST_PROGS)
+include ../lib.mk