Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 284433
b: refs/heads/master
c: 85bbddc
h: refs/heads/master
i:
  284431: d9d08f5
v: v3
  • Loading branch information
Frederic Weisbecker authored and Linus Torvalds committed Jan 13, 2012
1 parent ae25f35 commit dd7ddfa
Show file tree
Hide file tree
Showing 5 changed files with 417 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 274343ad3e63c4dcee6744a75b5553940de4a0f6
refs/heads/master: 85bbddc37b2bf947a577d572b1c4c23bf829217f
2 changes: 1 addition & 1 deletion trunk/tools/testing/selftests/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
TARGETS =
TARGETS = breakpoints

all:
for TARGET in $(TARGETS); do \
Expand Down
20 changes: 20 additions & 0 deletions trunk/tools/testing/selftests/breakpoints/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Taken from perf makefile
uname_M := $(shell uname -m 2>/dev/null || echo not)
ARCH ?= $(shell echo $(uname_M) | sed -e s/i.86/i386/)
ifeq ($(ARCH),i386)
ARCH := x86
endif
ifeq ($(ARCH),x86_64)
ARCH := x86
endif


all:
ifeq ($(ARCH),x86)
gcc breakpoint_test.c -o run_test
else
echo "Not an x86 target, can't build breakpoints selftests"
endif

clean:
rm -fr run_test
Loading

0 comments on commit dd7ddfa

Please sign in to comment.