File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -96,7 +96,7 @@ before_script:
96
96
if [ "$BUILD_TYPE" = "valgrind" ]; then
97
97
export TEST_WRAP='valgrind --leak-check=full'
98
98
# Skip container tests as valgrind doesn't cope with clone()
99
- export TEST_FILTER="--gtest_filter=-*Container*"
99
+ export TEST_FILTER="--gtest_filter=-*Container*:-*LiveSearchANY* "
100
100
fi
101
101
- |
102
102
if [ "$BUILD_TYPE" = "ios" ]; then
Original file line number Diff line number Diff line change 1
1
#! /bin/sh
2
2
set -e
3
+
4
+ # Travis on MacOS uses CloudFlare's DNS (1.1.1.1/1.0.0.1) which rejects ANY requests
5
+ # Note res_ninit() and /etc/resolv.conf actually have different configs, bad Travis
6
+ [ -z " $TEST_FILTER " ] && export TEST_FILTER=" --gtest_filter=-*LiveSearchANY*"
7
+
3
8
if [ " $BUILD_TYPE " != " ios" -a " $BUILD_TYPE " != " analyse" -a " $BUILD_TYPE " != " cmake" -a " $BUILD_TYPE " != " valgrind" ]; then
4
9
$TEST_WRAP ./adig www.google.com
5
10
$TEST_WRAP ./acountry www.google.com
You can’t perform that action at this time.
0 commit comments