xref: /curl/tests/http/Makefile.am (revision d0a851fe)
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/ws_echo_server.py
39
40EXTRA_DIST =           \
41config.ini.in          \
42conftest.py            \
43requirements.txt       \
44scorecard.py           \
45test_01_basic.py       \
46test_02_download.py    \
47test_03_goaway.py      \
48test_04_stuttered.py   \
49test_05_errors.py      \
50test_06_eyeballs.py    \
51test_07_upload.py      \
52test_08_caddy.py       \
53test_09_push.py        \
54test_10_proxy.py       \
55test_11_unix.py        \
56test_12_reuse.py       \
57test_13_proxy_auth.py  \
58test_14_auth.py        \
59test_15_tracing.py     \
60test_20_websockets.py  \
61$(TESTENV)
62
63clean-local:
64	rm -rf *.pyc __pycache__
65	rm -rf gen
66
67check: clients
68
69clients:
70	@(cd clients; $(MAKE) check)
71
72checksrc:
73	cd clients && $(MAKE) checksrc
74