All of lore.kernel.org
 help / color / mirror / Atom feed
* [GIT PULL] kselftest fixes update for 4.16-rc4
@ 2018-02-28 21:10 ` shuahkh
  0 siblings, 0 replies; 3+ messages in thread
From: Shuah Khan @ 2018-02-28 21:10 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: linux-kselftest, LKML, Shuah Khan, Shuah Khan

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

Hi Linus,

Please pull the following Kselftest update for 4.16-rc4.

This kselftest fixes update for 4.16-rc4 consists of of fixes for
various problems in test output, compile errors, and missing configs.

Diff for the update is attached.

thanks,
-- Shuah

-----------------------------------------------------------------------------------
The following changes since commit 7928b2cbe55b2a410a0f5c1f154610059c57b1b2:

  Linux 4.16-rc1 (2018-02-11 15:04:29 -0800)

are available in the git repository at:

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

for you to fetch changes up to f6869826de700bce59e2cef14974f99836e34e4f:

  selftests: vm: update .gitignore with new test (2018-02-26 16:09:50 -0700)

----------------------------------------------------------------
linux-kselftest-4.16-rc4

This kselftest fixes update for 4.16-rc4 consists of of fixes for
various problems in test output, compile errors, and missing configs.

----------------------------------------------------------------
Anders Roxell (2):
      selftests: sync: missing CFLAGS while compiling
      selftests: memfd: add config fragment for fuse

Daniel Díaz (2):
      selftests/android: Fix line continuation in Makefile
      selftests/futex: Fix line continuation in Makefile

Dominik Brodowski (1):
      selftest/vDSO: fix O=

Naresh Kamboju (1):
      selftests: pstore: Adding config fragment CONFIG_PSTORE_RAM=m

Shuah Khan (2):
      selftests: memory-hotplug: silence test command echo
      selftests: vm: update .gitignore with new test

 tools/testing/selftests/android/Makefile        |  8 ++++----
 tools/testing/selftests/futex/Makefile          |  6 +++---
 tools/testing/selftests/memfd/config            |  1 +
 tools/testing/selftests/memory-hotplug/Makefile |  2 +-
 tools/testing/selftests/pstore/config           |  1 +
 tools/testing/selftests/sync/Makefile           |  2 +-
 tools/testing/selftests/vDSO/Makefile           | 14 +++++++-------
 tools/testing/selftests/vm/.gitignore           |  1 +
 8 files changed, 19 insertions(+), 16 deletions(-)
 create mode 100644 tools/testing/selftests/memfd/config
-----------------------------------------------------------------------------------


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: linux-kselftest-4.16-rc4.diff --]
[-- Type: text/x-patch; name="linux-kselftest-4.16-rc4.diff", Size: 4598 bytes --]

diff --git a/tools/testing/selftests/android/Makefile b/tools/testing/selftests/android/Makefile
index 1a7492268993..f6304d2be90c 100644
--- a/tools/testing/selftests/android/Makefile
+++ b/tools/testing/selftests/android/Makefile
@@ -11,11 +11,11 @@ all:
 		BUILD_TARGET=$(OUTPUT)/$$DIR;	\
 		mkdir $$BUILD_TARGET  -p;	\
 		make OUTPUT=$$BUILD_TARGET -C $$DIR $@;\
-		#SUBDIR test prog name should be in the form: SUBDIR_test.sh
+		#SUBDIR test prog name should be in the form: SUBDIR_test.sh \
 		TEST=$$DIR"_test.sh"; \
-		if [ -e $$DIR/$$TEST ]; then
-			rsync -a $$DIR/$$TEST $$BUILD_TARGET/;
-		fi
+		if [ -e $$DIR/$$TEST ]; then \
+			rsync -a $$DIR/$$TEST $$BUILD_TARGET/; \
+		fi \
 	done
 
 override define RUN_TESTS
diff --git a/tools/testing/selftests/futex/Makefile b/tools/testing/selftests/futex/Makefile
index cea4adcd42b8..a63e8453984d 100644
--- a/tools/testing/selftests/futex/Makefile
+++ b/tools/testing/selftests/futex/Makefile
@@ -12,9 +12,9 @@ all:
 		BUILD_TARGET=$(OUTPUT)/$$DIR;	\
 		mkdir $$BUILD_TARGET  -p;	\
 		make OUTPUT=$$BUILD_TARGET -C $$DIR $@;\
-		if [ -e $$DIR/$(TEST_PROGS) ]; then
-			rsync -a $$DIR/$(TEST_PROGS) $$BUILD_TARGET/;
-		fi
+		if [ -e $$DIR/$(TEST_PROGS) ]; then \
+			rsync -a $$DIR/$(TEST_PROGS) $$BUILD_TARGET/; \
+		fi \
 	done
 
 override define RUN_TESTS
diff --git a/tools/testing/selftests/memfd/config b/tools/testing/selftests/memfd/config
new file mode 100644
index 000000000000..835c7f4dadcd
--- /dev/null
+++ b/tools/testing/selftests/memfd/config
@@ -0,0 +1 @@
+CONFIG_FUSE_FS=m
diff --git a/tools/testing/selftests/memory-hotplug/Makefile b/tools/testing/selftests/memory-hotplug/Makefile
index 86636d207adf..183b46883875 100644
--- a/tools/testing/selftests/memory-hotplug/Makefile
+++ b/tools/testing/selftests/memory-hotplug/Makefile
@@ -4,7 +4,7 @@ all:
 include ../lib.mk
 
 TEST_PROGS := mem-on-off-test.sh
-override RUN_TESTS := ./mem-on-off-test.sh -r 2 && echo "selftests: memory-hotplug [PASS]" || echo "selftests: memory-hotplug [FAIL]"
+override RUN_TESTS := @./mem-on-off-test.sh -r 2 && echo "selftests: memory-hotplug [PASS]" || echo "selftests: memory-hotplug [FAIL]"
 override EMIT_TESTS := echo "$(RUN_TESTS)"
 
 run_full_test:
diff --git a/tools/testing/selftests/pstore/config b/tools/testing/selftests/pstore/config
index 6a8e5a9bfc10..d148f9f89fb6 100644
--- a/tools/testing/selftests/pstore/config
+++ b/tools/testing/selftests/pstore/config
@@ -2,3 +2,4 @@ CONFIG_MISC_FILESYSTEMS=y
 CONFIG_PSTORE=y
 CONFIG_PSTORE_PMSG=y
 CONFIG_PSTORE_CONSOLE=y
+CONFIG_PSTORE_RAM=m
diff --git a/tools/testing/selftests/sync/Makefile b/tools/testing/selftests/sync/Makefile
index b3c8ba3cb668..d0121a8a3523 100644
--- a/tools/testing/selftests/sync/Makefile
+++ b/tools/testing/selftests/sync/Makefile
@@ -30,7 +30,7 @@ $(TEST_CUSTOM_PROGS): $(TESTS) $(OBJS)
 	$(CC) -o $(TEST_CUSTOM_PROGS) $(OBJS) $(TESTS) $(CFLAGS) $(LDFLAGS)
 
 $(OBJS): $(OUTPUT)/%.o: %.c
-	$(CC) -c $^ -o $@
+	$(CC) -c $^ -o $@ $(CFLAGS)
 
 $(TESTS): $(OUTPUT)/%.o: %.c
 	$(CC) -c $^ -o $@
diff --git a/tools/testing/selftests/vDSO/Makefile b/tools/testing/selftests/vDSO/Makefile
index 3d5a62ff7d31..f5d7a7851e21 100644
--- a/tools/testing/selftests/vDSO/Makefile
+++ b/tools/testing/selftests/vDSO/Makefile
@@ -1,4 +1,6 @@
 # SPDX-License-Identifier: GPL-2.0
+include ../lib.mk
+
 ifndef CROSS_COMPILE
 CFLAGS := -std=gnu99
 CFLAGS_vdso_standalone_test_x86 := -nostdlib -fno-asynchronous-unwind-tables -fno-stack-protector
@@ -6,16 +8,14 @@ ifeq ($(CONFIG_X86_32),y)
 LDLIBS += -lgcc_s
 endif
 
-TEST_PROGS := vdso_test vdso_standalone_test_x86
+TEST_PROGS := $(OUTPUT)/vdso_test $(OUTPUT)/vdso_standalone_test_x86
 
 all: $(TEST_PROGS)
-vdso_test: parse_vdso.c vdso_test.c
-vdso_standalone_test_x86: vdso_standalone_test_x86.c parse_vdso.c
+$(OUTPUT)/vdso_test: parse_vdso.c vdso_test.c
+$(OUTPUT)/vdso_standalone_test_x86: vdso_standalone_test_x86.c parse_vdso.c
 	$(CC) $(CFLAGS) $(CFLAGS_vdso_standalone_test_x86) \
 		vdso_standalone_test_x86.c parse_vdso.c \
-		-o vdso_standalone_test_x86
+		-o $@
 
-include ../lib.mk
-clean:
-	rm -fr $(TEST_PROGS)
+EXTRA_CLEAN := $(TEST_PROGS)
 endif
diff --git a/tools/testing/selftests/vm/.gitignore b/tools/testing/selftests/vm/.gitignore
index 63c94d776e89..342c7bc9dc8c 100644
--- a/tools/testing/selftests/vm/.gitignore
+++ b/tools/testing/selftests/vm/.gitignore
@@ -11,3 +11,4 @@ mlock-intersect-test
 mlock-random-test
 virtual_address_range
 gup_benchmark
+va_128TBswitch

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [GIT PULL] kselftest fixes update for 4.16-rc4
@ 2018-02-28 21:10 ` shuahkh
  0 siblings, 0 replies; 3+ messages in thread
From: shuahkh @ 2018-02-28 21:10 UTC (permalink / raw)


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain, Size: 2253 bytes --]

Hi Linus,

Please pull the following Kselftest update for 4.16-rc4.

This kselftest fixes update for 4.16-rc4 consists of of fixes for
various problems in test output, compile errors, and missing configs.

Diff for the update is attached.

thanks,
-- Shuah

-----------------------------------------------------------------------------------
The following changes since commit 7928b2cbe55b2a410a0f5c1f154610059c57b1b2:

  Linux 4.16-rc1 (2018-02-11 15:04:29 -0800)

are available in the git repository at:

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

for you to fetch changes up to f6869826de700bce59e2cef14974f99836e34e4f:

  selftests: vm: update .gitignore with new test (2018-02-26 16:09:50 -0700)

----------------------------------------------------------------
linux-kselftest-4.16-rc4

This kselftest fixes update for 4.16-rc4 consists of of fixes for
various problems in test output, compile errors, and missing configs.

----------------------------------------------------------------
Anders Roxell (2):
      selftests: sync: missing CFLAGS while compiling
      selftests: memfd: add config fragment for fuse

Daniel Díaz (2):
      selftests/android: Fix line continuation in Makefile
      selftests/futex: Fix line continuation in Makefile

Dominik Brodowski (1):
      selftest/vDSO: fix O=

Naresh Kamboju (1):
      selftests: pstore: Adding config fragment CONFIG_PSTORE_RAM=m

Shuah Khan (2):
      selftests: memory-hotplug: silence test command echo
      selftests: vm: update .gitignore with new test

 tools/testing/selftests/android/Makefile        |  8 ++++----
 tools/testing/selftests/futex/Makefile          |  6 +++---
 tools/testing/selftests/memfd/config            |  1 +
 tools/testing/selftests/memory-hotplug/Makefile |  2 +-
 tools/testing/selftests/pstore/config           |  1 +
 tools/testing/selftests/sync/Makefile           |  2 +-
 tools/testing/selftests/vDSO/Makefile           | 14 +++++++-------
 tools/testing/selftests/vm/.gitignore           |  1 +
 8 files changed, 19 insertions(+), 16 deletions(-)
 create mode 100644 tools/testing/selftests/memfd/config
-----------------------------------------------------------------------------------

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [GIT PULL] kselftest fixes update for 4.16-rc4
@ 2018-02-28 21:10 ` shuahkh
  0 siblings, 0 replies; 3+ messages in thread
From: Shuah Khan @ 2018-02-28 21:10 UTC (permalink / raw)


Hi Linus,

Please pull the following Kselftest update for 4.16-rc4.

This kselftest fixes update for 4.16-rc4 consists of of fixes for
various problems in test output, compile errors, and missing configs.

Diff for the update is attached.

thanks,
-- Shuah

-----------------------------------------------------------------------------------
The following changes since commit 7928b2cbe55b2a410a0f5c1f154610059c57b1b2:

  Linux 4.16-rc1 (2018-02-11 15:04:29 -0800)

are available in the git repository at:

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

for you to fetch changes up to f6869826de700bce59e2cef14974f99836e34e4f:

  selftests: vm: update .gitignore with new test (2018-02-26 16:09:50 -0700)

----------------------------------------------------------------
linux-kselftest-4.16-rc4

This kselftest fixes update for 4.16-rc4 consists of of fixes for
various problems in test output, compile errors, and missing configs.

----------------------------------------------------------------
Anders Roxell (2):
      selftests: sync: missing CFLAGS while compiling
      selftests: memfd: add config fragment for fuse

Daniel Díaz (2):
      selftests/android: Fix line continuation in Makefile
      selftests/futex: Fix line continuation in Makefile

Dominik Brodowski (1):
      selftest/vDSO: fix O=

Naresh Kamboju (1):
      selftests: pstore: Adding config fragment CONFIG_PSTORE_RAM=m

Shuah Khan (2):
      selftests: memory-hotplug: silence test command echo
      selftests: vm: update .gitignore with new test

 tools/testing/selftests/android/Makefile        |  8 ++++----
 tools/testing/selftests/futex/Makefile          |  6 +++---
 tools/testing/selftests/memfd/config            |  1 +
 tools/testing/selftests/memory-hotplug/Makefile |  2 +-
 tools/testing/selftests/pstore/config           |  1 +
 tools/testing/selftests/sync/Makefile           |  2 +-
 tools/testing/selftests/vDSO/Makefile           | 14 +++++++-------
 tools/testing/selftests/vm/.gitignore           |  1 +
 8 files changed, 19 insertions(+), 16 deletions(-)
 create mode 100644 tools/testing/selftests/memfd/config
-----------------------------------------------------------------------------------

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2018-02-28 21:10 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-02-28 21:10 [GIT PULL] kselftest fixes update for 4.16-rc4 Shuah Khan
2018-02-28 21:10 ` Shuah Khan
2018-02-28 21:10 ` shuahkh

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.