selftests: launch individual selftests from the main Makefile
[linux-flexiantxendom0-3.2.10.git] / tools / testing / selftests / breakpoints / Makefile
index f362722..9312780 100644 (file)
@@ -11,10 +11,13 @@ endif
 
 all:
 ifeq ($(ARCH),x86)
-       gcc breakpoint_test.c -o run_test
+       gcc breakpoint_test.c -o breakpoint_test
 else
        echo "Not an x86 target, can't build breakpoints selftests"
 endif
 
+run_tests:
+       ./breakpoint_test
+
 clean:
-       rm -fr run_test
+       rm -fr breakpoint_test