summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2019-10-09 09:20:29 +0200
committerDaniel Stenberg <daniel@haxx.se>2019-10-09 14:16:28 +0200
commit5584aa96f81b5808e47f62cfd1d0f726f49ec2fa (patch)
treef298c6d01f7988a835762924c05da8f9be2d3190
parentb59f0626b59e8a83a971b45212840313e73c9020 (diff)
downloadcurl-5584aa96f81b5808e47f62cfd1d0f726f49ec2fa.tar.gz
cirrus: switch off blackhole status on the freebsd CI machines
-rw-r--r--.cirrus.yml4
1 files changed, 4 insertions, 0 deletions
diff --git a/.cirrus.yml b/.cirrus.yml
index 2eeb4b1ff..dc7e2299a 100644
--- a/.cirrus.yml
+++ b/.cirrus.yml
@@ -25,6 +25,10 @@ task:
compile_script:
- make V=1
test_script:
+ # blackhole?
+ - sysctl net.inet.tcp.blackhole
+ # make sure we don't run blackhole != 0
+ - sudo sysctl net.inet.tcp.blackhole=0
# Some tests won't run if run as root so run them as another user.
# Make directories world writable so the test step can write wherever it needs.
- find . -type d -exec chmod 777 {} \;