1# Makefile for `wget' utility
2# Copyright (C) 2013 Free Software Foundation, Inc.
3
4# This program is free software; you can redistribute it and/or modify
5# it under the terms of the GNU General Public License as published by
6# the Free Software Foundation; either version 3 of the License, or
7# (at your option) any later version.
8
9# This program is distributed in the hope that it will be useful,
10# but WITHOUT ANY WARRANTY; without even the implied warranty of
11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12# GNU General Public License for more details.
13
14# You should have received a copy of the GNU General Public License
15# along with Wget.  If not, see <http://www.gnu.org/licenses/>.
16
17# Additional permission under GNU GPL version 3 section 7
18
19# If you modify this program, or any covered work, by linking or
20# combining it with the OpenSSL project's OpenSSL library (or a
21# modified version of that library), containing parts covered by the
22# terms of the OpenSSL or SSLeay licenses, the Free Software Foundation
23# grants you additional permission to convey the resulting work.
24# Corresponding Source for a non-source form of such a combination
25# shall include the source code for the parts of OpenSSL used as well
26# as that of the covered work.
27
28
29AUTOMAKE_OPTIONS = parallel-tests
30AM_TESTS_ENVIRONMENT = export WGETRC=/dev/null; MAKE_CHECK=True; export MAKE_CHECK; export PYTHONPATH=$$PYTHONPATH:$(srcdir);
31TESTS = Test-auth-basic-fail.py             \
32    Test-auth-basic.py                      \
33    Test-auth-both.py                       \
34    Test-auth-digest.py                     \
35    Test-auth-no-challenge.py               \
36    Test-auth-no-challenge-url.py           \
37    Test-auth-retcode.py                    \
38    Test-auth-with-content-disposition.py   \
39    Test-c-full.py                          \
40    Test-Content-disposition-2.py           \
41    Test-Content-disposition.py             \
42    Test-cookie-401.py                      \
43    Test-cookie-domain-mismatch.py          \
44    Test-cookie-expires.py                  \
45    Test-cookie.py                          \
46    Test-Head.py                            \
47    Test--https.py                          \
48    Test-O.py                               \
49    Test-Post.py                            \
50    Test--spider-r.py
51
52XFAIL_TESTS = Test-auth-both.py
53
54EXTRA_DIST = certs conf exc misc server test README $(TESTS) $(XFAIL_TESTS)
55
56TEST_EXTENSIONS = .py
57PY_LOG_COMPILER = python3
58AM_PY_LOG_FLAGS = -O
59