1
1
mirror of https://github.com/systemd/systemd-stable.git synced 2025-01-21 18:03:41 +03:00

test-bpf: rename to test-bpf-firewall

Let's make the name better reflect its scope.
This commit is contained in:
Zbigniew Jędrzejewski-Szmek 2019-11-08 11:58:55 +01:00
parent 672cbcbc20
commit d3472f9b50
2 changed files with 2 additions and 2 deletions

View File

@ -428,7 +428,7 @@ tests += [
[libbasic],
[]],
[['src/test/test-bpf.c',
[['src/test/test-bpf-firewall.c',
'src/test/test-helper.c'],
[libcore,
libshared],

View File

@ -61,7 +61,7 @@ int main(int argc, char *argv[]) {
test_setup_logging(LOG_DEBUG);
if (detect_container() > 0)
return log_tests_skipped("test-bpf fails inside LXC and Docker containers: https://github.com/systemd/systemd/issues/9666");
return log_tests_skipped("test-bpf-firewall fails inside LXC and Docker containers: https://github.com/systemd/systemd/issues/9666");
assert_se(getrlimit(RLIMIT_MEMLOCK, &rl) >= 0);
rl.rlim_cur = rl.rlim_max = MAX3(rl.rlim_cur, rl.rlim_max, CAN_MEMLOCK_SIZE);