diff options
author | Dave Young <dyoung@redhat.com> | 2012-12-17 19:04:49 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-12-17 20:15:27 -0500 |
commit | ed8ad10c3b2fab18dd92d21afd4277a8a521ecfd (patch) | |
tree | a18e3d5668faa9df3f9fe8d288325a810274716b /tools/testing | |
parent | 63d233673a9f6c524969e40e7012e3e461aafd32 (diff) |
kcmp selftests: print fail status instead of cause make error
In case kcmp_test exit non zero value it will cause make error.
Better way is just print the test failure status.
Signed-off-by: Dave Young <dyoung@redhat.com>
Reviewed-by: Pekka Enberg <penberg@kernel.org>
Cc: Cyrill Gorcunov <gorcunov@openvz.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'tools/testing')
-rw-r--r-- | tools/testing/selftests/kcmp/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/testing/selftests/kcmp/Makefile b/tools/testing/selftests/kcmp/Makefile index c608945a0ef5..56eb5523dbb8 100644 --- a/tools/testing/selftests/kcmp/Makefile +++ b/tools/testing/selftests/kcmp/Makefile | |||
@@ -22,7 +22,7 @@ else | |||
22 | endif | 22 | endif |
23 | 23 | ||
24 | run_tests: all | 24 | run_tests: all |
25 | ./kcmp_test | 25 | @./kcmp_test || echo "kcmp_test: [FAIL]" |
26 | 26 | ||
27 | clean: | 27 | clean: |
28 | rm -fr ./run_test | 28 | rm -fr ./run_test |