summaryrefslogtreecommitdiff
path: root/test/sanitizer_common/TestCases
diff options
context:
space:
mode:
authorDouglas Yung <douglas.yung@sony.com>2019-02-14 10:39:11 +0000
committerDouglas Yung <douglas.yung@sony.com>2019-02-14 10:39:11 +0000
commitf0a298eaf652c5f1e52db8485e90479aa0870580 (patch)
tree2d1bb7638b17c1bf0b89f8c8eba04c36dba33cdd /test/sanitizer_common/TestCases
parenta776aa8033ee64c54e1bc3712cb7772fd823dd57 (diff)
downloadcompiler-rt-f0a298eaf652c5f1e52db8485e90479aa0870580.tar.gz
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
Diffstat (limited to 'test/sanitizer_common/TestCases')
-rw-r--r--test/sanitizer_common/TestCases/Posix/getpw_getgr.cc6
1 files changed, 2 insertions, 4 deletions
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<passwd>(&getpwuid, 0);
test<passwd>(&getpwnam, "root");
test<group>(&getgrgid, 0);
- // Disable this test for now since it seems to hit a bug in EGLIBC 2.19
- //test<group>(&getgrnam, any_group.c_str());
+ test<group>(&getgrnam, any_group.c_str());
#if !defined(__ANDROID__)
setpwent();
@@ -92,8 +91,7 @@ int main(int argc, const char *argv[]) {
test_r<passwd>(&getpwnam_r, "root");
test_r<group>(&getgrgid_r, 0);
- // Disable this test for now since it seems to hit a bug in EGLIBC 2.19
- //test_r<group>(&getgrnam_r, any_group.c_str());
+ test_r<group>(&getgrnam_r, any_group.c_str());
#if defined(__linux__)
auto pwd_file = [] {