From f0a298eaf652c5f1e52db8485e90479aa0870580 Mon Sep 17 00:00:00 2001 From: Douglas Yung Date: Thu, 14 Feb 2019 10:39:11 +0000 Subject: Revert "Temporarily disable calls to getgrnam/getgrnam_r in test due to it hitting unrelated issues in EGLIBC 2.19." This reverts commit r353594. We have updated our internal build bot to a newer version of LIBC which does not have this problem. git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@354014 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/sanitizer_common/TestCases/Posix/getpw_getgr.cc | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'test/sanitizer_common/TestCases') diff --git a/test/sanitizer_common/TestCases/Posix/getpw_getgr.cc b/test/sanitizer_common/TestCases/Posix/getpw_getgr.cc index 7873f7250..b4bc9b43d 100644 --- a/test/sanitizer_common/TestCases/Posix/getpw_getgr.cc +++ b/test/sanitizer_common/TestCases/Posix/getpw_getgr.cc @@ -72,8 +72,7 @@ int main(int argc, const char *argv[]) { test(&getpwuid, 0); test(&getpwnam, "root"); test(&getgrgid, 0); - // Disable this test for now since it seems to hit a bug in EGLIBC 2.19 - //test(&getgrnam, any_group.c_str()); + test(&getgrnam, any_group.c_str()); #if !defined(__ANDROID__) setpwent(); @@ -92,8 +91,7 @@ int main(int argc, const char *argv[]) { test_r(&getpwnam_r, "root"); test_r(&getgrgid_r, 0); - // Disable this test for now since it seems to hit a bug in EGLIBC 2.19 - //test_r(&getgrnam_r, any_group.c_str()); + test_r(&getgrnam_r, any_group.c_str()); #if defined(__linux__) auto pwd_file = [] { -- cgit v1.2.1