summaryrefslogtreecommitdiffstats
path: root/src/c-ares/travis/distcheck.sh
blob: 8d195a86805558fb2347a7a1b4b19453815bcb95 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh
set -e

if [ "$BUILD_TYPE" = "normal" -a "$TRAVIS_OS_NAME" = "linux" ]; then
    ./maketgz 99.98.97
    tar xvf c-ares-99.98.97.tar.gz
    cd c-ares-99.98.97
    ./configure --disable-symbol-hiding --enable-expose-statics --enable-maintainer-mode --enable-debug
    make

    cd test
    make
    $TEST_WRAP ./arestest -v $TEST_FILTER
    cd ..

    cd ..
fi