All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v4 1/9] kbuild: Don't pass -rR to selftest makefiles
@ 2015-03-11  4:05 ` Michael Ellerman
  0 siblings, 0 replies; 47+ messages in thread
From: Michael Ellerman @ 2015-03-11  4:05 UTC (permalink / raw)
  To: shuahkh; +Cc: linux-kernel, davej, mmarek, linux-api

The makefiles under tools/testing/selftests are not real kbuild
makefiles, they are regular stand alone makefiles. As such they *do*
want all the standard implicit rules and variables defined.

So before calling those makefiles, filter -rR out of MAKEFLAGS.

Without this not all the selftests are built correctly when called via
the top-level Makefile.

Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
---
 Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile b/Makefile
index 1100ff3c77e3..0836e9d628f0 100644
--- a/Makefile
+++ b/Makefile
@@ -1085,7 +1085,7 @@ headers_check: headers_install
 
 PHONY += kselftest
 kselftest:
-	$(Q)$(MAKE) -C tools/testing/selftests run_tests
+	$(Q)$(MAKE) -C tools/testing/selftests MAKEFLAGS="$(filter-out rR,$(MAKEFLAGS))" run_tests
 
 # ---------------------------------------------------------------------------
 # Modules
-- 
2.1.0


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

end of thread, other threads:[~2015-03-18 14:30 UTC | newest]

Thread overview: 47+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-03-11  4:05 [PATCH v4 1/9] kbuild: Don't pass -rR to selftest makefiles Michael Ellerman
2015-03-11  4:05 ` Michael Ellerman
2015-03-11  4:05 ` [PATCH v4 2/9] kbuild: Don't pass LDFLAGS to selftest Makefile Michael Ellerman
2015-03-11  4:05   ` Michael Ellerman
2015-03-11 16:08   ` Shuah Khan
2015-03-11 16:08     ` Shuah Khan
2015-03-13 18:06   ` Shuah Khan
2015-03-13 18:06     ` Shuah Khan
2015-03-11  4:05 ` [PATCH v4 3/9] selftests: Introduce minimal shared logic for running tests Michael Ellerman
2015-03-11  4:05   ` Michael Ellerman
2015-03-13 17:19   ` Shuah Khan
2015-03-13 17:19     ` Shuah Khan
2015-03-13 20:28     ` Shuah Khan
2015-03-13 20:28       ` Shuah Khan
2015-03-11  4:06 ` [PATCH v4 4/9] selftests: Add install target Michael Ellerman
2015-03-11  4:06   ` Michael Ellerman
2015-03-11 13:18   ` Shuah Khan
2015-03-11 16:03     ` Shuah Khan
2015-03-11 16:03       ` Shuah Khan
2015-03-12  3:11       ` Michael Ellerman
2015-03-12  3:11         ` Michael Ellerman
2015-03-12  3:15     ` Michael Ellerman
2015-03-12  3:15       ` Michael Ellerman
2015-03-13 16:33       ` Dave Jones
2015-03-13 16:33         ` Dave Jones
2015-03-13 17:08         ` Shuah Khan
2015-03-13 17:20   ` Shuah Khan
2015-03-13 17:20     ` Shuah Khan
2015-03-13 21:32     ` Shuah Khan
2015-03-13 21:32       ` Shuah Khan
2015-03-13 23:08       ` Shuah Khan
2015-03-13 23:08         ` Shuah Khan
2015-03-16  3:04       ` Michael Ellerman
2015-03-16  3:12         ` Michael Ellerman
2015-03-16  3:12           ` Michael Ellerman
2015-03-18 14:30         ` Shuah Khan
2015-03-18 14:30           ` Shuah Khan
2015-03-11  4:06 ` [PATCH v4 5/9] selftests: Add install support for the powerpc tests Michael Ellerman
2015-03-11  4:06   ` Michael Ellerman
2015-03-11  4:06 ` [PATCH v4 6/9] selftests: Set CC using CROSS_COMPILE once in lib.mk Michael Ellerman
2015-03-11  4:06   ` Michael Ellerman
2015-03-11  4:06 ` [PATCH v4 7/9] selftests/timers: Use implicit rules Michael Ellerman
2015-03-11  4:06   ` Michael Ellerman
2015-03-11  4:06 ` [PATCH v4 8/9] selftests/mqueue: " Michael Ellerman
2015-03-11  4:06   ` Michael Ellerman
2015-03-11  4:06 ` [PATCH v4 9/9] selftests/mount: " Michael Ellerman
2015-03-11  4:06   ` Michael Ellerman

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.