about summary refs log tree commit diff
path: root/nss/tst-nss-test1.c
Commit message (Collapse)AuthorAgeFilesLines
* Fix nss/tst-nss-test1.c format warning.Joseph Myers2014-11-271-1/+1
| | | | | | | | | | | | | Testing for 32-bit x86 shows up a warning "tst-nss-test1.c:25:3: warning: format '%ju' expects argument of type 'uintmax_t', but argument 2 has type 'int' [-Wformat=]". The argument is a difference of two pointers, a signed quantity of type ptrdiff_t for which the right format is %td; this patch makes this test use that format. Tested for 32-bit x86. * nss/tst-nss-test1.c (do_test): Use %td printf format for pointer difference, not %ju.
* Add self-contained test for NSS.Ulrich Drepper2010-08-111-0/+72
While at it fix interaction between __nss_configure_lookup and nscd. Otherwise the test fails if nscd is runnung.