diff options
Diffstat (limited to 'tools/testing/selftests/breakpoints')
| -rw-r--r-- | tools/testing/selftests/breakpoints/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/tools/testing/selftests/breakpoints/Makefile b/tools/testing/selftests/breakpoints/Makefile index f362722cdce7..931278035f5c 100644 --- a/tools/testing/selftests/breakpoints/Makefile +++ b/tools/testing/selftests/breakpoints/Makefile | |||
| @@ -11,10 +11,13 @@ endif | |||
| 11 | 11 | ||
| 12 | all: | 12 | all: |
| 13 | ifeq ($(ARCH),x86) | 13 | ifeq ($(ARCH),x86) |
| 14 | gcc breakpoint_test.c -o run_test | 14 | gcc breakpoint_test.c -o breakpoint_test |
| 15 | else | 15 | else |
| 16 | echo "Not an x86 target, can't build breakpoints selftests" | 16 | echo "Not an x86 target, can't build breakpoints selftests" |
| 17 | endif | 17 | endif |
| 18 | 18 | ||
| 19 | run_tests: | ||
| 20 | ./breakpoint_test | ||
| 21 | |||
| 19 | clean: | 22 | clean: |
| 20 | rm -fr run_test | 23 | rm -fr breakpoint_test |
