From f9cf34914708c066272bf1a5924d8aa5e1622352 Mon Sep 17 00:00:00 2001 From: Evgeny Vereshchagin Date: Sun, 23 Dec 2018 12:04:20 +0100 Subject: [PATCH] travis: skip test-bpf on Travis CI More generally IPAddress[Allow|Deny] are broken in docker and lxc containers. --- src/test/test-bpf.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/test/test-bpf.c b/src/test/test-bpf.c index ea5f0f5bc68..7341f7f1ead 100644 --- a/src/test/test-bpf.c +++ b/src/test/test-bpf.c @@ -30,6 +30,9 @@ int main(int argc, char *argv[]) { test_setup_logging(LOG_DEBUG); + if (is_run_on_travis_ci()) + return log_tests_skipped("test-bpf fails on Travis CI: https://github.com/systemd/systemd/issues/9666"); + r = enter_cgroup_subroot(); if (r == -ENOMEDIUM) return log_tests_skipped("cgroupfs not available"); -- 2.47.3