From 4ad9b0501c45959eb5940aeb60a65cb4da07706f Mon Sep 17 00:00:00 2001 From: Erik Ekman Date: Thu, 22 Mar 2012 13:11:10 +0100 Subject: [PATCH] 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. --- ports/unix/check/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ports/unix/check/Makefile b/ports/unix/check/Makefile index 026890f..43b813c 100644 --- a/ports/unix/check/Makefile +++ b/ports/unix/check/Makefile @@ -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