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 = \ 42CMakeLists.txt \ 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_16_info.py \ 62test_17_ssl_use.py \ 63test_18_methods.py \ 64test_19_shutdown.py \ 65test_20_websockets.py \ 66test_30_vsftpd.py \ 67test_31_vsftpds.py \ 68$(TESTENV) 69 70clean-local: 71 rm -rf *.pyc __pycache__ 72 rm -rf gen 73 74check: clients 75 76clients: 77 @(cd clients; $(MAKE) check) 78 79checksrc: 80 cd clients && $(MAKE) checksrc 81