aboutsummaryrefslogtreecommitdiff
path: root/tests/resolv.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/resolv.c')
-rw-r--r--tests/resolv.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/resolv.c b/tests/resolv.c
index 0678b05f..d1d3b2fe 100644
--- a/tests/resolv.c
+++ b/tests/resolv.c
@@ -129,7 +129,9 @@ TestMain("Resolver", {
// Travis CI has moved some of their services to host that
// apparently don't support IPv6 at all. This is very sad.
- if (getenv("TRAVIS") != NULL) {
+ // CircleCI 2.0 is in the same boat. (Amazon to blame.)
+ if ((getenv("TRAVIS") != NULL) ||
+ (getenv("CIRCLECI") != NULL)) {
ConveySkip("IPv6 missing from CI provider");
}