summaryrefslogtreecommitdiffstats
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
commitb041a18bcf98dcef8fc32332eb167ea510364921 (patch)
treea1ad961f7cd4bbc4193a6a0bff575b7657ef93e7
parent344968fdb4d93577559ba7a47f63bffffaaa36fe (diff)
downloadbcm5719-llvm-b041a18bcf98dcef8fc32332eb167ea510364921.tar.gz
bcm5719-llvm-b041a18bcf98dcef8fc32332eb167ea510364921.zip
Temporarily disable calls to getgrnam/getgrnam_r in test due to it hitting unrelated issues in EGLIBC 2.19.
llvm-svn: 353594
-rw-r--r--compiler-rt/test/sanitizer_common/TestCases/Posix/getpw_getgr.cc6
1 files changed, 4 insertions, 2 deletions
diff --git a/compiler-rt/test/sanitizer_common/TestCases/Posix/getpw_getgr.cc b/compiler-rt/test/sanitizer_common/TestCases/Posix/getpw_getgr.cc
index b4bc9b43d0d..7873f7250fb 100644
--- a/compiler-rt/test/sanitizer_common/TestCases/Posix/getpw_getgr.cc
+++ b/compiler-rt/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 = [] {
OpenPOWER on IntegriCloud