forked from deater/perf_event_tests
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
sysfs/events : add test for events as exported by sysfs
- Loading branch information
Showing
5 changed files
with
534 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
5 July 2013 | ||
+ Add sysfs test | ||
|
||
28 June 2013 | ||
+ Add ioctl_flag_group test | ||
+ Add nmi_soft_lockup_test | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
CC = gcc | ||
CFLAGS = -Wall -O2 -I../include | ||
LFLAGS = | ||
|
||
all: events | ||
|
||
|
||
### | ||
|
||
../lib/test_utils.o: ../lib/test_utils.c | ||
cd ../lib && make | ||
|
||
### | ||
|
||
events: events.o ../lib/test_utils.o | ||
$(CC) $(LFLAGS) -o events events.o ../lib/test_utils.o | ||
|
||
events.o: events.c | ||
$(CC) $(CFLAGS) -c events.c | ||
|
||
### | ||
|
||
clean: | ||
rm -f *~ *.o \ | ||
events | ||
|
Oops, something went wrong.