Git init
[external/curl.git] / tests / Makefile.am
1 #***************************************************************************
2 #                                  _   _ ____  _
3 #  Project                     ___| | | |  _ \| |
4 #                             / __| | | | |_) | |
5 #                            | (__| |_| |  _ <| |___
6 #                             \___|\___/|_| \_\_____|
7 #
8 # Copyright (C) 1998 - 2010, Daniel Stenberg, <daniel@haxx.se>, et al.
9 #
10 # This software is licensed as described in the file COPYING, which
11 # you should have received as part of this distribution. The terms
12 # are also available at http://curl.haxx.se/docs/copyright.html.
13 #
14 # You may opt to use, copy, modify, merge, publish, distribute and/or sell
15 # copies of the Software, and permit persons to whom the Software is
16 # furnished to do so, under the terms of the COPYING file.
17 #
18 # This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
19 # KIND, either express or implied.
20 #
21 ###########################################################################
22
23 HTMLPAGES = testcurl.html runtests.html
24 PDFPAGES = testcurl.pdf runtests.pdf
25
26 EXTRA_DIST = ftpserver.pl httpserver.pl secureserver.pl runtests.pl getpart.pm \
27  FILEFORMAT README stunnel.pem memanalyze.pl testcurl.pl valgrind.pm ftp.pm   \
28  sshserver.pl sshhelp.pm testcurl.1 runtests.1 $(HTMLPAGES) $(PDFPAGES) \
29  CMakeLists.txt certs/scripts/*.sh certs/Server* certs/EdelCurlRoot* \
30  serverhelp.pm tftpserver.pl rtspserver.pl directories.pm symbol-scan.pl
31
32 SUBDIRS = data server libtest
33
34 PERLFLAGS = -I$(srcdir)
35
36 CLEANFILES = .http.pid .https.pid .ftp.pid .ftps.pid
37
38 MAN2HTML= roffit < $< >$@
39
40 curl:
41         @cd $(top_builddir) && $(MAKE)
42
43 if CROSSCOMPILING
44 TEST = @echo "NOTICE: we can't run the tests when cross-compiling!"
45 TEST_Q =
46 TEST_F =
47 TEST_T =
48 else # if not cross-compiling:
49 TEST = srcdir=$(srcdir) $(PERL) $(PERLFLAGS) $(srcdir)/runtests.pl
50 TEST_Q = -a -s
51 TEST_F = -a -p -r
52 TEST_T = -a -t
53 endif
54
55 test: all
56         $(TEST)
57
58 quiet-test: all
59         $(TEST) $(TEST_Q)
60
61 full-test: all
62         $(TEST) $(TEST_F)
63
64 torture-test: all
65         $(TEST) $(TEST_T)
66
67 .1.html:
68         $(MAN2HTML)
69
70 .1.pdf:
71         @(foo=`echo $@ | sed -e 's/\.[0-9]$$//g'`; \
72         groff -Tps -man $< >$$foo.ps; \
73         ps2pdf $$foo.ps $@; \
74         rm $$foo.ps; \
75         echo "converted $< to $@")