xref: /curl/tests/http/Makefile.am (revision b55c56a7)
1#***************************************************************************
2#                                  _   _ ____  _
3#  Project                     ___| | | |  _ \| |
4#                             / __| | | | |_) | |
5#                            | (__| |_| |  _ <| |___
6#                             \___|\___/|_| \_\_____|
7#
8# Copyright (C) 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 https://curl.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# SPDX-License-Identifier: curl
22#
23###########################################################################
24
25SUBDIRS = clients
26
27TESTENV =                             \
28testenv/__init__.py                   \
29testenv/caddy.py                      \
30testenv/certs.py                      \
31testenv/client.py                     \
32testenv/curl.py                       \
33testenv/env.py                        \
34testenv/httpd.py                      \
35testenv/mod_curltest/mod_curltest.c   \
36testenv/nghttpx.py                    \
37testenv/ports.py                      \
38testenv/vsftpd.py                     \
39testenv/ws_echo_server.py
40
41EXTRA_DIST =           \
42config.ini.in          \
43conftest.py            \
44requirements.txt       \
45scorecard.py           \
46test_01_basic.py       \
47test_02_download.py    \
48test_03_goaway.py      \
49test_04_stuttered.py   \
50test_05_errors.py      \
51test_06_eyeballs.py    \
52test_07_upload.py      \
53test_08_caddy.py       \
54test_09_push.py        \
55test_10_proxy.py       \
56test_11_unix.py        \
57test_12_reuse.py       \
58test_13_proxy_auth.py  \
59test_14_auth.py        \
60test_15_tracing.py     \
61test_20_websockets.py  \
62$(TESTENV)
63
64clean-local:
65	rm -rf *.pyc __pycache__
66	rm -rf gen
67
68check: clients
69
70clients:
71	@(cd clients; $(MAKE) check)
72
73checksrc:
74	cd clients && $(MAKE) checksrc
75