From 6bd1457afe396864cc4b9884157a6126027ed85e Mon Sep 17 00:00:00 2001 From: Evgeny Vereshchagin Date: Thu, 30 May 2019 03:29:50 +0200 Subject: [PATCH] tests: skip test-bpf only when we're 100% sure it's run in containers This is just a follow-up to https://github.com/systemd/systemd/pull/12617. --- src/test/test-bpf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/test-bpf.c b/src/test/test-bpf.c index f4d0c731f1..90ab15c549 100644 --- a/src/test/test-bpf.c +++ b/src/test/test-bpf.c @@ -57,7 +57,7 @@ int main(int argc, char *argv[]) { test_setup_logging(LOG_DEBUG); - if (detect_container()) + if (detect_container() > 0) return log_tests_skipped("test-bpf fails inside LXC and Docker containers: https://github.com/systemd/systemd/issues/9666"); assert_se(getrlimit(RLIMIT_MEMLOCK, &rl) >= 0); -- 2.25.1