Skip to content

Commit

Permalink
crashes: add new nmi_soft_lockup test
Browse files Browse the repository at this point in the history
this took 2 days to bisect, I hope it gets fixed as the fuzzer
hits it right away.
  • Loading branch information
deater committed Jun 28, 2013
1 parent 161f04f commit e312934
Show file tree
Hide file tree
Showing 4 changed files with 459 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
28 June 2013
+ Add nmi_soft_lockup_test

+ All the fuzzer stuff

22 May 2013
+ Add perf_mmap_close_bug

Expand Down
12 changes: 11 additions & 1 deletion crashes/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ PAPI_LIB = /usr/local/lib/libpapi.a
all: pe_inherit_memleak pe_task_schedule_panic \
perf_mmap_close_bug offcore_response_mask \
oflo_sw_cpu_clock_crash sw_event_config_overflow \
nmi_soft_lockup \
tracepoint_fork

####
Expand Down Expand Up @@ -74,6 +75,15 @@ sw_event_config_overflow: sw_event_config_overflow.o ../lib/perf_helpers.o
sw_event_config_overflow.o: sw_event_config_overflow.c
$(CC) $(CFLAGS) -c sw_event_config_overflow.c

####

nmi_soft_lockup: nmi_soft_lockup.o
$(CC) $(LFLAGS) -o nmi_soft_lockup nmi_soft_lockup.o


nmi_soft_lockup.o: nmi_soft_lockup.c
$(CC) $(CFLAGS) -c nmi_soft_lockup.c


####

Expand All @@ -89,6 +99,6 @@ clean:
rm -f *~ *.o pe_inherit_memleak pe_task_schedule_panic \
perf_mmap_close_bug offcore_response_mask \
oflo_sw_cpu_clock_crash sw_event_config_overflow \
tracepoint_fork
nmi_soft_lockup tracepoint_fork


Loading

0 comments on commit e312934

Please sign in to comment.