tests: Add ap-mgmt-fuzzer

This program can be used to run fuzzing tests for areas related to AP
management frame parsing and processing.

Signed-off-by: Jouni Malinen <j@w1.fi>
This commit is contained in:
Jouni Malinen 2015-04-18 16:27:18 +03:00
parent 0af57c3dd8
commit 26b3f64428
9 changed files with 288 additions and 9 deletions

View file

@ -1,8 +1,21 @@
all:
@echo Nothing to be made.
all: libeap_server.a
clean:
rm -f *~ *.o *.d *.gcno *.gcda *.gcov
rm -f *~ *.o *.d *.gcno *.gcda *.gcov libeap_server.a
install:
@echo Nothing to be made.
include ../lib.rules
CFLAGS += -DCONFIG_HS20
LIB_OBJS= \
eap_server.o \
eap_server_identity.o \
eap_server_methods.o
libeap_server.a: $(LIB_OBJS)
$(AR) crT $@ $?
-include $(OBJS:%.o=%.d)