diff options
Diffstat (limited to 'tests/test_getgroups_dynamic.c')
| -rw-r--r-- | tests/test_getgroups_dynamic.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/test_getgroups_dynamic.c b/tests/test_getgroups_dynamic.c new file mode 100644 index 0000000..6d35381 --- /dev/null +++ b/tests/test_getgroups_dynamic.c | |||
| @@ -0,0 +1,16 @@ | |||
| 1 | #include "common.h" | ||
| 2 | |||
| 3 | #include <unistd.h> | ||
| 4 | |||
| 5 | int main(int argc, char** argv) { | ||
| 6 | gid_t list[8] = {0}; | ||
| 7 | |||
| 8 | getgroups(6, list); | ||
| 9 | |||
| 10 | CHK_FAIL_START | ||
| 11 | getgroups(argc, list); | ||
| 12 | CHK_FAIL_END | ||
| 13 | |||
| 14 | puts((const char*)list); | ||
| 15 | return ret; | ||
| 16 | } | ||
