diff options
author | Andrew Morton <akpm@linux-foundation.org> | 2012-03-28 14:42:54 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-03-28 17:14:37 -0700 |
commit | cab6b0560080c6da5107c5d7dbba6372f7b288ab (patch) | |
tree | 80603cebd91e43f94311385655c409bd9d9bdc7c /tools | |
parent | f467f7140339355978994ffcc23d569e7b4cea4d (diff) | |
download | linux-3.10-cab6b0560080c6da5107c5d7dbba6372f7b288ab.tar.gz linux-3.10-cab6b0560080c6da5107c5d7dbba6372f7b288ab.tar.bz2 linux-3.10-cab6b0560080c6da5107c5d7dbba6372f7b288ab.zip |
selftests/Makefile: make `run_tests' depend on `all'
So a "make run_tests" will build the tests before trying to run them.
Acked-by: Frederic Weisbecker <fweisbec@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/testing/selftests/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/testing/selftests/Makefile b/tools/testing/selftests/Makefile index b1119f0db51..9203cd77fc3 100644 --- a/tools/testing/selftests/Makefile +++ b/tools/testing/selftests/Makefile @@ -5,7 +5,7 @@ all: make -C $$TARGET; \ done; -run_tests: +run_tests: all for TARGET in $(TARGETS); do \ make -C $$TARGET run_tests; \ done; |