2019-12-28 14:56:05 +08:00
|
|
|
#!/bin/bash
|
2020-03-23 21:44:29 +08:00
|
|
|
#***************************************************************************
|
|
|
|
# _ _ ____ _
|
|
|
|
# Project ___| | | | _ \| |
|
|
|
|
# / __| | | | |_) | |
|
|
|
|
# | (__| |_| | _ <| |___
|
|
|
|
# \___|\___/|_| \_\_____|
|
|
|
|
#
|
2022-01-09 19:28:00 +08:00
|
|
|
# Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
|
2020-03-23 21:44:29 +08:00
|
|
|
#
|
|
|
|
# This software is licensed as described in the file COPYING, which
|
|
|
|
# you should have received as part of this distribution. The terms
|
2020-11-04 21:02:01 +08:00
|
|
|
# are also available at https://curl.se/docs/copyright.html.
|
2020-03-23 21:44:29 +08:00
|
|
|
#
|
|
|
|
# You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
|
|
|
# copies of the Software, and permit persons to whom the Software is
|
|
|
|
# furnished to do so, under the terms of the COPYING file.
|
|
|
|
#
|
|
|
|
# This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
# KIND, either express or implied.
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: curl
|
2022-05-17 17:16:50 +08:00
|
|
|
#
|
2020-03-23 21:44:29 +08:00
|
|
|
###########################################################################
|
2019-12-28 14:56:05 +08:00
|
|
|
set -eo pipefail
|
|
|
|
|
2022-03-15 17:25:25 +08:00
|
|
|
autoreconf -fi
|
2019-12-28 14:56:05 +08:00
|
|
|
|
|
|
|
if [ "$T" = "coverage" ]; then
|
2020-10-26 06:08:54 +08:00
|
|
|
./configure --enable-debug --disable-shared --disable-threaded-resolver --enable-code-coverage --enable-werror --with-libssh2
|
2019-12-28 14:56:05 +08:00
|
|
|
make
|
|
|
|
make TFLAGS=-n test-nonflaky
|
|
|
|
make "TFLAGS=-n -e" test-nonflaky
|
|
|
|
tests="1 200 300 500 700 800 900 1000 1100 1200 1302 1400 1502 3000"
|
|
|
|
make "TFLAGS=-n -t $tests" test-nonflaky
|
|
|
|
coveralls --gcov /usr/bin/gcov-8 --gcov-options '\-lp' -i src -e lib -e tests -e docs -b $PWD/src
|
|
|
|
coveralls --gcov /usr/bin/gcov-8 --gcov-options '\-lp' -e src -i lib -e tests -e docs -b $PWD/lib
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ "$T" = "torture" ]; then
|
2021-04-15 15:21:40 +08:00
|
|
|
./configure --enable-debug --disable-shared --disable-threaded-resolver --enable-code-coverage --enable-werror --with-libssh2 --with-openssl
|
2021-03-11 23:18:53 +08:00
|
|
|
make
|
|
|
|
tests="!TLS-SRP !FTP"
|
|
|
|
make "TFLAGS=-n --shallow=20 -t $tests" test-nonflaky
|
|
|
|
fi
|
|
|
|
|
2019-12-28 14:56:05 +08:00
|
|
|
if [ "$T" = "debug" ]; then
|
|
|
|
./configure --enable-debug --enable-werror $C
|
|
|
|
make
|
|
|
|
make examples
|
|
|
|
if [ -z $NOTESTS ]; then
|
2020-11-02 06:26:04 +08:00
|
|
|
make test-nonflaky
|
2019-12-28 14:56:05 +08:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2021-05-26 15:16:19 +08:00
|
|
|
if [ "$T" = "debug-bearssl" ]; then
|
|
|
|
./configure --enable-debug --enable-werror $C
|
|
|
|
make
|
|
|
|
make "TFLAGS=-n !313" test-nonflaky
|
|
|
|
fi
|
|
|
|
|
2019-12-28 14:56:05 +08:00
|
|
|
if [ "$T" = "novalgrind" ]; then
|
|
|
|
./configure --enable-werror $C
|
|
|
|
make
|
|
|
|
make examples
|
|
|
|
make TFLAGS=-n test-nonflaky
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ "$T" = "normal" ]; then
|
|
|
|
if [ $TRAVIS_OS_NAME = linux ]; then
|
|
|
|
# Remove system curl to make sure we don't rely on it.
|
|
|
|
# Only done on Linux since we're not permitted to on mac.
|
|
|
|
sudo rm -f /usr/bin/curl
|
|
|
|
fi
|
|
|
|
./configure --enable-warnings --enable-werror $C
|
|
|
|
make
|
|
|
|
make examples
|
|
|
|
if [ -z $NOTESTS ]; then
|
|
|
|
make test-nonflaky
|
|
|
|
fi
|
2020-08-04 10:12:34 +08:00
|
|
|
if [ -n "$CHECKSRC" ]; then
|
2019-12-28 14:56:05 +08:00
|
|
|
make checksrc
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ "$T" = "tidy" ]; then
|
|
|
|
./configure --enable-warnings --enable-werror $C
|
|
|
|
make
|
|
|
|
make tidy
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ "$T" = "cmake" ]; then
|
2022-06-16 02:00:42 +08:00
|
|
|
mkdir -p build
|
|
|
|
cd ./build
|
|
|
|
cmake .. -DCURL_WERROR=ON $C
|
|
|
|
cd ..
|
2020-05-09 06:18:29 +08:00
|
|
|
cmake --build build
|
2021-01-02 18:44:58 +08:00
|
|
|
env TFLAGS="!1139 $TFLAGS" cmake --build build --target test-nonflaky
|
2019-12-28 14:56:05 +08:00
|
|
|
fi
|
|
|
|
|
|
|
|
if [ "$T" = "fuzzer" ]; then
|
|
|
|
# Download the fuzzer to a temporary folder
|
|
|
|
./tests/fuzz/download_fuzzer.sh /tmp/curl_fuzzer
|
|
|
|
|
|
|
|
export CURLSRC=$PWD
|
|
|
|
|
|
|
|
# Run the mainline fuzzer test
|
|
|
|
pushd /tmp/curl_fuzzer
|
|
|
|
./mainline.sh ${CURLSRC}
|
|
|
|
popd
|
|
|
|
fi
|