Browse Source

selftests/bpf: test_sockmap, join cgroup in selftest mode

In case of selftest mode, temporary cgroup environment is created but
cgroup is not joined. It causes test failures. Fixed by joining the
cgroup

Fixes: 16962b2404ac ("bpf: sockmap, add selftests")
Acked-by: John Fastabend <john.fastabend@gmail.com>
Signed-off-by: Prashant Bhole <bhole_prashant_q7@lab.ntt.co.jp>
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
Prashant Bhole 7 years ago
parent
commit
035b37ff2c
1 changed files with 5 additions and 0 deletions
  1. 5 0
      tools/testing/selftests/bpf/test_sockmap.c

+ 5 - 0
tools/testing/selftests/bpf/test_sockmap.c

@@ -1344,6 +1344,11 @@ static int __test_suite(char *bpf_file)
 		return cg_fd;
 		return cg_fd;
 	}
 	}
 
 
+	if (join_cgroup(CG_PATH)) {
+		fprintf(stderr, "ERROR: failed to join cgroup\n");
+		return -EINVAL;
+	}
+
 	/* Tests basic commands and APIs with range of iov values */
 	/* Tests basic commands and APIs with range of iov values */
 	txmsg_start = txmsg_end = 0;
 	txmsg_start = txmsg_end = 0;
 	err = test_txmsg(cg_fd);
 	err = test_txmsg(cg_fd);