mirror of https://github.com/c-ares/c-ares.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
369 B
18 lines
369 B
8 years ago
|
#!/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
|