aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorDave Young2012-12-17 18:04:50 -0600
committerLinus Torvalds2012-12-17 19:15:27 -0600
commit5a55f8bb2d0c4e5c05837b688ed1b2132a0ed0e7 (patch)
tree0fc43297be496aaeb1bfc9251aa70423bfb9c5c2 /tools
parented8ad10c3b2fab18dd92d21afd4277a8a521ecfd (diff)
downloadkernel-omap-5a55f8bb2d0c4e5c05837b688ed1b2132a0ed0e7.tar.gz
kernel-omap-5a55f8bb2d0c4e5c05837b688ed1b2132a0ed0e7.tar.xz
kernel-omap-5a55f8bb2d0c4e5c05837b688ed1b2132a0ed0e7.zip
breakpoint selftests: print failure status instead of cause make error
In case breakpoint 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> 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/breakpoints/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/testing/selftests/breakpoints/Makefile b/tools/testing/selftests/breakpoints/Makefile
index 931278035f5c..e18b42b254af 100644
--- a/tools/testing/selftests/breakpoints/Makefile
+++ b/tools/testing/selftests/breakpoints/Makefile
@@ -17,7 +17,7 @@ else
17endif 17endif
18 18
19run_tests: 19run_tests:
20 ./breakpoint_test 20 @./breakpoint_test || echo "breakpoints selftests: [FAIL]"
21 21
22clean: 22clean:
23 rm -fr breakpoint_test 23 rm -fr breakpoint_test