]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Make GRTE testing great again, actually run the test programs
authorStan Shebs <stanshebs@google.com>
Thu, 12 Jan 2017 20:54:46 +0000 (12:54 -0800)
committerStan Shebs <stanshebs@google.com>
Thu, 12 Jan 2017 20:54:46 +0000 (12:54 -0800)
README.google
nss/tst-nss-getpwent.c

index bdaaacb983e5a48be0aa42febb0c4ed31d751fde..3e1e215304cb13f1af2b60be6046dcff570ba14e 100644 (file)
@@ -625,3 +625,7 @@ posix/fnmatch_loop.c
   Don't read past end of pattern in fnmatch (BZ17062)
   https://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commit;h=b3a9f56ba59c3d8eadd3135a1c25c37a63151450
   (stanshebs, backport)
+
+nss/tst-nss-getpwent.c
+  Work around b/34251679 by restricting to nss_files module
+  (stanshebs, google-local)
index f2e8abce6098392d8b56a8fa2a9c931653d918e8..9a197cfafb58265f90cb5ebd79cb9582ec10e1db 100644 (file)
@@ -32,6 +32,10 @@ do_test (void)
   uid_t first_uid = 0;
   char *last_name = NULL;
   uid_t last_uid = 0;
+
+  // Google local: restrict to nss_files module, avoids b/34251679 in nss_cache
+  __nss_configure_lookup("passwd", "files");
+
   setpwent ();
   while ((pw  = getpwent ()) != NULL)
     {