Files
clang-p2996/compiler-rt/test/sanitizer_common/TestCases/Linux/getgrouplist.cpp
Fangrui Song 49f282b549 [sanitizer][test] Remove no-op REQUIRES:
Some patches around D109843 added `REQUIRES: freebsd` but they have no effects
due to sanitizer_common/TestCases/Linux/lit.local.cfg.py . I informed the author
but don't plan to move the tests.
2023-06-12 14:15:03 -07:00

30 lines
494 B
C++

// RUN: %clangxx -O0 -g %s -o %t && %run %t
#include <stdlib.h>
#include <unistd.h>
#include <grp.h>
int main(void) {
gid_t *groups;
group *root;
int ngroups;
ngroups = sysconf(_SC_NGROUPS_MAX);
groups = (gid_t *)malloc(ngroups * sizeof(gid_t));
if (!groups)
exit(1);
if (!(root = getgrnam("root")))
exit(2);
if (getgrouplist("root", root->gr_gid, groups, &ngroups) == -1)
exit(3);
if (groups && ngroups) {
free(groups);
exit(0);
}
return -1;
}