diff options
author | Daniel Stenberg <daniel@haxx.se> | 2011-01-01 17:33:42 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2011-01-03 19:38:10 +0100 |
commit | 35e1d6538a8767526b9cae66134441b146503a21 (patch) | |
tree | 871888fc2da33021b88546f78c33e90add2d675b /tests/Makefile.am | |
parent | 45cea7196870f2b5e7096a619dc1a9725295ca1a (diff) | |
download | curl-35e1d6538a8767526b9cae66134441b146503a21.tar.gz |
unittest: framework for unit-testing
This is the first approach at doing fairly clean and easy to write and
debug unit tests.
Diffstat (limited to 'tests/Makefile.am')
-rw-r--r-- | tests/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am index 78450b100..decc2d8e2 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -5,7 +5,7 @@ # | (__| |_| | _ <| |___ # \___|\___/|_| \_\_____| # -# Copyright (C) 1998 - 2010, Daniel Stenberg, <daniel@haxx.se>, et al. +# Copyright (C) 1998 - 2011, Daniel Stenberg, <daniel@haxx.se>, et al. # # This software is licensed as described in the file COPYING, which # you should have received as part of this distribution. The terms @@ -29,7 +29,7 @@ EXTRA_DIST = ftpserver.pl httpserver.pl secureserver.pl runtests.pl getpart.pm \ CMakeLists.txt certs/scripts/*.sh certs/Server* certs/EdelCurlRoot* \ serverhelp.pm tftpserver.pl rtspserver.pl directories.pm symbol-scan.pl -SUBDIRS = data server libtest +SUBDIRS = data server libtest unit PERLFLAGS = -I$(srcdir) |