1
0
mirror of https://github.com/libuv/libuv synced 2025-03-28 21:13:16 +00:00

test: fix get_passwd2 on IBM i (#4154)

uid 0 is `qsecofr` on IBM i.

Refs: https://github.com/libuv/libuv/issues/4143
This commit is contained in:
Abdirahim Musse 2023-10-06 18:25:40 +00:00 committed by GitHub
parent fc4840ebc9
commit 75f7de4010
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -135,11 +135,16 @@ TEST_IMPL(get_passwd2) {
len = strlen(pwd2.username);
ASSERT_GT(len, 0);
#if defined(__PASE__)
// uid 0 is qsecofr on IBM i
ASSERT_STR_EQ(pwd2.username, "qsecofr");
#else
ASSERT_STR_EQ(pwd2.username, "root");
#endif
len = strlen(pwd2.homedir);
# ifndef __PASE__
ASSERT_GT(len, 0);
#endif
len = strlen(pwd2.shell);
# ifndef __PASE__
ASSERT_GT(len, 0);