Add unit tests for DHCP

Three simple tests that test the basic functionality of the DHCP client.
They require that UDP checksums are off for now.
This commit is contained in:
Erik Ekman 2012-03-22 13:11:10 +01:00 committed by Simon Goldschmidt
parent 5b1bd88115
commit 4ad9b0501c
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ LWIPOBJS=$(LWIPFILES:.c=.o)
TESTDIR=$(CODEDIR)/test/unit
TESTFILES=$(TESTDIR)/lwip_unittests.c $(TESTDIR)/udp/test_udp.c $(TESTDIR)/etharp/test_etharp.c $(TESTDIR)/tcp/tcp_helper.c \
$(TESTDIR)/tcp/test_tcp_oos.c $(TESTDIR)/tcp/test_tcp.c $(TESTDIR)/core/test_mem.c
$(TESTDIR)/tcp/test_tcp_oos.c $(TESTDIR)/tcp/test_tcp.c $(TESTDIR)/core/test_mem.c $(TESTDIR)/dhcp/test_dhcp.c
TESTOBJS=$(TESTFILES:.c=.o)
%.o: %.c Makefile $(TESTDIR)/lwipopts.h