tests: Add eapol-fuzzer

This program can be used to run fuzzing tests for areas related to EAPOL
frame parsing and processing on the supplicant side.

Signed-off-by: Jouni Malinen <j@w1.fi>
This commit is contained in:
Jouni Malinen 2015-04-18 11:31:11 +03:00
parent a65d7495b5
commit 46c3befe24
10 changed files with 368 additions and 15 deletions

View file

@ -1,8 +1,16 @@
all:
@echo Nothing to be made.
all: libl2_packet.a
clean:
rm -f *~ *.o *.d *.gcno *.gcda *.gcov
rm -f *~ *.o *.d *.gcno *.gcda *.gcov libl2_packet.a
install:
@echo Nothing to be made.
include ../lib.rules
LIB_OBJS = l2_packet_linux.o
libl2_packet.a: $(LIB_OBJS)
$(AR) crT $@ $?
-include $(OBJS:%.o=%.d)