LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
* [GIT PULL] kselftest update for 4.17-4
@ 2018-05-03 20:50 Shuah Khan
  0 siblings, 0 replies; only message in thread
From: Shuah Khan @ 2018-05-03 20:50 UTC (permalink / raw)
  To: Linus Torvalds
  Cc: Shuah Khan, Mathieu Desnoyers, linux-kselftest, linux-kernel

[-- Attachment #1: Type: text/plain, Size: 1464 bytes --]

Hi Linus,

Please pull the following Kselftest update for 4.17-rc4

This Kselftest update for 4.17-rc4 consists of a fix for a syntax error
in the script that runs selftests. Mathieu Desnoyers found this bug in
the script on systems running GNU Make 3.8 or older.

diff is attached.

thanks,
-- Shuah

-----------------------------------------------------------------------------------
The following changes since commit 8bf24e8319613bbe950d4188682b3a0d9441b76b:

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

are available in the git repository at:

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

for you to fetch changes up to a33554401e4746cc33307910a1baad63ce3fd650:

  selftests: Fix lib.mk run_tests target shell script (2018-04-27 16:06:36 -0600)

----------------------------------------------------------------
linux-kselftest-4.17-rc4

This Kselftest update for 4.17-rc4 consists of a fix for a syntax error
in the script that runs selftests. Mathieu Desnoyers found this bug in
the script on systems running GNU Make 3.8 or older.

----------------------------------------------------------------
Mathieu Desnoyers (1):
      selftests: Fix lib.mk run_tests target shell script

 tools/testing/selftests/lib.mk | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
-----------------------------------------------------------------------------------

[-- Attachment #2: linux-kselftest-4.17-rc4.diff --]
[-- Type: text/x-patch, Size: 663 bytes --]

diff --git a/tools/testing/selftests/lib.mk b/tools/testing/selftests/lib.mk
index 195e9d4739a9..c1b1a4dc6a96 100644
--- a/tools/testing/selftests/lib.mk
+++ b/tools/testing/selftests/lib.mk
@@ -20,10 +20,10 @@ all: $(TEST_GEN_PROGS) $(TEST_GEN_PROGS_EXTENDED) $(TEST_GEN_FILES)
 
 .ONESHELL:
 define RUN_TESTS
-	@export KSFT_TAP_LEVEL=`echo 1`;
-	@test_num=`echo 0`;
-	@echo "TAP version 13";
-	@for TEST in $(1); do				\
+	@export KSFT_TAP_LEVEL=`echo 1`;		\
+	test_num=`echo 0`;				\
+	echo "TAP version 13";				\
+	for TEST in $(1); do				\
 		BASENAME_TEST=`basename $$TEST`;	\
 		test_num=`echo $$test_num+1 | bc`;	\
 		echo "selftests: $$BASENAME_TEST";	\

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2018-05-03 20:51 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-05-03 20:50 [GIT PULL] kselftest update for 4.17-4 Shuah Khan

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).