diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-04-12 17:53:12 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-04-12 17:53:12 +0200 |
commit | bfe13ccc58ccb96f243a58309800410db1ccb52c (patch) | |
tree | 9b11760d9a0a5bfbdfeda140c0f795e80844a556 /.travis.yml | |
parent | c5f1ef53c24cc0c9f7b2131609e916f913634feb (diff) | |
download | vim-git-bfe13ccc58ccb96f243a58309800410db1ccb52c.tar.gz |
patch 8.2.0557: no IPv6 support for channelsv8.2.0557
Problem: No IPv6 support for channels.
Solution: Add IPv6 support. (Ozaki Kiichi, closes #5893)
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml index 356702cdf..2c5f5ff30 100644 --- a/.travis.yml +++ b/.travis.yml @@ -62,9 +62,7 @@ _anchors: sudo update-alternatives --install /usr/bin/lua lua /usr/bin/lua5.3 10 fi before_script: - # On travis bionic-amd64 gethostbyname() resolves "localhost" to 127.0.1.1 - # so that makes various channel tests fail. - - sudo sed -i '/^127\.0\.1\.1\s/s/\blocalhost\b//g' /etc/hosts + - sudo sysctl -w net.ipv6.conf.lo.disable_ipv6=0 - sudo bash ci/load-snd-dummy.sh || true - sudo usermod -a -G audio $USER - do_test() { sg audio "sg $(id -gn) '$*'"; } |