summaryrefslogtreecommitdiff
path: root/test/sanitizer_common/TestCases
diff options
context:
space:
mode:
authorDouglas Yung <douglas.yung@sony.com>2019-02-09 01:28:47 +0000
committerDouglas Yung <douglas.yung@sony.com>2019-02-09 01:28:47 +0000
commit837eff0210877deb33ff9eddd2a5ec1cbb2b5173 (patch)
tree689997923865d5f85cfef773998554ad5cfc423b /test/sanitizer_common/TestCases
parent00ab2236146c035d7cabab47c76d13596a4ea315 (diff)
downloadcompiler-rt-837eff0210877deb33ff9eddd2a5ec1cbb2b5173.tar.gz
Temporarily disable calls to getgrnam/getgrnam_r in test due to it hitting unrelated issues in EGLIBC 2.19.
git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@353594 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, 4 insertions, 2 deletions
diff --git a/test/sanitizer_common/TestCases/Posix/getpw_getgr.cc b/test/sanitizer_common/TestCases/Posix/getpw_getgr.cc
index b4bc9b43d..7873f7250 100644
--- a/test/sanitizer_common/TestCases/Posix/getpw_getgr.cc
+++ b/test/sanitizer_common/TestCases/Posix/getpw_getgr.cc
@@ -72,7 +72,8 @@ int main(int argc, const char *argv[]) {
test<passwd>(&getpwuid, 0);
test<passwd>(&getpwnam, "root");
test<group>(&getgrgid, 0);
- test<group>(&getgrnam, any_group.c_str());
+ // Disable this test for now since it seems to hit a bug in EGLIBC 2.19
+ //test<group>(&getgrnam, any_group.c_str());
#if !defined(__ANDROID__)
setpwent();
@@ -91,7 +92,8 @@ int main(int argc, const char *argv[]) {
test_r<passwd>(&getpwnam_r, "root");
test_r<group>(&getgrgid_r, 0);
- test_r<group>(&getgrnam_r, any_group.c_str());
+ // 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());
#if defined(__linux__)
auto pwd_file = [] {