diff options
author | Julien Chaffraix <julien.chaffraix@gmail.com> | 2011-02-07 22:12:37 -0800 |
---|---|---|
committer | Julien Chaffraix <julien.chaffraix@gmail.com> | 2011-02-10 07:38:48 -0800 |
commit | 39d0d787d20b29ed57b10477340c7d000041d31d (patch) | |
tree | ba17ec4ce43722fe1b7322f2c8af5a407baf4dfb /tests/unit/Makefile.inc | |
parent | 3cffcba3d0cf78a2aa17197059f810f5a7ce05a5 (diff) | |
download | curl-39d0d787d20b29ed57b10477340c7d000041d31d.tar.gz |
test1304: Added some unit tests for Curl_parsenetrc.
Moved some definitons into the header file so that we can reuse them.
Diffstat (limited to 'tests/unit/Makefile.inc')
-rw-r--r-- | tests/unit/Makefile.inc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/unit/Makefile.inc b/tests/unit/Makefile.inc index 0db217d86..6dd7a4165 100644 --- a/tests/unit/Makefile.inc +++ b/tests/unit/Makefile.inc @@ -3,9 +3,10 @@ UNITFILES = curlcheck.h # These are all unit test programs -noinst_PROGRAMS = unit1300 unit1301 unit1302 unit1303 +noinst_PROGRAMS = unit1300 unit1301 unit1302 unit1303 unit1304 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) |