File tree 1 file changed +4
-2
lines changed
compiler-rt/test/sanitizer_common/TestCases/Posix
1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -72,7 +72,8 @@ int main(int argc, const char *argv[]) {
72
72
test<passwd>(&getpwuid, 0 );
73
73
test<passwd>(&getpwnam, " root" );
74
74
test<group>(&getgrgid, 0 );
75
- test<group>(&getgrnam, any_group.c_str ());
75
+ // Disable this test for now since it seems to hit a bug in EGLIBC 2.19
76
+ // test<group>(&getgrnam, any_group.c_str());
76
77
77
78
#if !defined(__ANDROID__)
78
79
setpwent ();
@@ -91,7 +92,8 @@ int main(int argc, const char *argv[]) {
91
92
test_r<passwd>(&getpwnam_r, " root" );
92
93
93
94
test_r<group>(&getgrgid_r, 0 );
94
- test_r<group>(&getgrnam_r, any_group.c_str ());
95
+ // Disable this test for now since it seems to hit a bug in EGLIBC 2.19
96
+ // test_r<group>(&getgrnam_r, any_group.c_str());
95
97
96
98
#if defined(__linux__)
97
99
auto pwd_file = [] {
You can’t perform that action at this time.
0 commit comments