mirror of
https://github.com/moparisthebest/curl
synced 2024-10-31 15:45:12 -04:00
c4dd8df081
The test code that was #ifdef'ed in the code was converted into unit tests in test case 1309. I also removed the #if 0'ed code from splay.c
20 lines
679 B
Makefile
20 lines
679 B
Makefile
# these files are used in every single unit test program
|
|
|
|
UNITFILES = curlcheck.h \
|
|
$(top_srcdir)/tests/libtest/test.h \
|
|
$(top_srcdir)/tests/libtest/first.c
|
|
|
|
# These are all unit test programs
|
|
UNITPROGS = unit1300 unit1301 unit1302 unit1303 unit1304 unit1305 unit1307 \
|
|
unit1308 unit1309
|
|
|
|
unit1300_SOURCES = unit1300.c $(UNITFILES)
|
|
unit1301_SOURCES = unit1301.c $(UNITFILES)
|
|
unit1302_SOURCES = unit1302.c $(UNITFILES)
|
|
unit1303_SOURCES = unit1303.c $(UNITFILES)
|
|
unit1304_SOURCES = unit1304.c $(UNITFILES)
|
|
unit1305_SOURCES = unit1305.c $(UNITFILES)
|
|
unit1307_SOURCES = unit1307.c $(UNITFILES)
|
|
unit1308_SOURCES = unit1308.c $(UNITFILES)
|
|
unit1309_SOURCES = unit1309.c $(UNITFILES)
|