summary refs log tree commit diff
path: root/posix/Makefile
Commit message (Collapse)AuthorAgeFilesLines
* Update copyright notices with scripts/update-copyrightsAllan McRae2014-01-011-1/+1
|
* Test getaddrinfo return valueDmitry V. Levin2013-05-211-1/+1
| | | | | | This helps testing for regression of BZ#15339. Creation of network isolated environments is a privileged operation and therefore is not included to the test.
* Move getlogin, getlogin_r, setlogin to login/ subdir.Roland McGrath2013-05-061-1/+0
|
* Set LC_ALL=C before sed.Paul Pluzhnikov2013-03-081-2/+2
|
* Remove PIPE_BUF Linux-specific codeSiddhesh Poyarekar2013-03-071-1/+2
| | | | | | | | Fixes BZ #12723 The variable pipe buffer size does nothing to the value of PIPE_BUF, since the number of bytes that are atomically written is still PIPE_BUF on Linux.
* Fix buffer overrun in regexp matcherAndreas Schwab2013-02-121-1/+2
|
* Fix handling of collating symbols in regexpsAndreas Schwab2013-02-121-1/+2
|
* Add --enable-hardcoded-path-in-tests configure optionH.J. Lu2013-01-111-6/+6
|
* Support run tst-exec and tst-spawn directlyH.J. Lu2013-01-101-0/+4
|
* Force getconf.speclist to be generated in the others pass.Roland McGrath2013-01-091-0/+5
|
* Update copyright notices with scripts/update-copyrights.Joseph Myers2013-01-021-1/+1
|
* Generate /usr/libexec/getconf files when cross-compiling.Joseph Myers2012-11-171-11/+3
|
* Adding missing -fexception CFLAGSMarcus Shawcroft2012-11-141-0/+1
|
* Support cross-testing.Joseph Myers2012-10-241-1/+2
|
* BZ#14743: Move clock_* symbols from librt to libc.Roland McGrath2012-10-241-8/+0
|
* Define and use $(run-built-tests).Joseph Myers2012-10-241-2/+2
|
* Use $(run-program-prefix) in posix/globtest.sh.Joseph Myers2012-10-231-2/+1
|
* Add and use $(host-built-program-cmd).Jim Blandy2012-10-231-2/+2
|
* Use $(run-program-prefix) in more shell script tests.Joseph Myers2012-10-191-2/+1
|
* Use $(built-program-cmd) in posix/tst-getconf.sh.Joseph Myers2012-10-191-1/+1
|
* Add a missing $(make-target-directory).Roland McGrath2012-09-281-0/+1
|
* Set "fail on error" mode directly in testsuite shell scriptsDmitry V. Levin2012-09-251-4/+4
|
* BZ#13696: Add --disable-nscd configure option.Roland McGrath2012-08-221-1/+1
|
* 2012-03-23 Daniel Jacobowitz <dmj@google.com>Paul Pluzhnikov2012-03-231-8/+0
| | | | | | | | | | | | | | | | | | | Paul Pluzhnikov <ppluzhnikov@google.com> [BZ #6528] * grp/Makefile (otherlibs): Don't set it. * inet/Makefile (otherlibs): Likewise. * login/Makefile (otherlibs): Likewise. * nscd/Makefile (otherlibs): Likewise. * posix/Makefile (otherlibs): Likewise. * pwd/Makefile (otherlibs): Likewise. * rt/Makefile (otherlibs): Likewise. * sunrpc/Makefile (otherlibs): Likewise. * nss/Makefile (otherlibs): Likewise. Add libnss_files to routines and static-only-routines. ($(objpfx)getent): Remove rule. * resolv/Makefile: Add libnss_dns and libresolv to routines and static-only-routines.
* Remove distribute variable from MakefilesUlrich Drepper2012-03-071-8/+1
|
* [BZ #13637]Stanislav Brabec2012-02-281-1/+2
| | | | | | | | * posix/regex_internal.c (re_string_skip_chars): Fix miscomputation of remain_len that may cause incomplete multi-byte character and false match. * posix/bug-regex33.c: New file. * posix/Makefile (tests): Add bug-regex33.
* Replace FSF snail mail address with URLs.Paul Eggert2012-02-091-3/+2
|
* Remove support for automatic cvs check-insUlrich Drepper2011-09-081-6/+0
| | | | CVS use for glibc is long gone.
* Add missing definition of LOCPATH for bug-regex32 runJohn Stanley2011-09-081-0/+1
|
* Fix unnecessary overallocation due to incomplete characterUlrich Drepper2011-05-281-1/+1
| | | | | | When incomplete characters are found at the end of a string the code ran amok and allocated lots of memory. Stricter limits are now in place.
* Provide more helpful error message in getoptUlrich Drepper2011-05-151-2/+2
| | | | If provide with an ambiguous long option we now show all the possibilities.
* Fix memory leak in fnmatchAndreas Schwab2010-11-121-2/+8
|
* Test case for last regex problem.Ulrich Drepper2010-10-111-2/+8
|
* Rejigger header generation for default uname implementation.Roland McGrath2010-08-241-0/+8
|
* Fix tst-chmod not to write into srcdir.Roland McGrath2010-04-091-1/+1
|
* Add tests for recent getopt changes.Ulrich Drepper2010-04-071-1/+3
|
* Add test for last glob bug.Ulrich Drepper2010-03-241-2/+2
|
* Fix ranges with multibyte characters as endpoints.Paolo Bonzini2009-11-171-1/+2
| | | | | | | | | | | | | | | | This is another bug in computing the fastmap. It was reported by a user of sed because it usually does not happen with !_LIBC. However, it is there in that case too. The bug is that whenever we have a range at the beginning of the regex, the regex must be tested on any possible multibyte character. The reason why _LIBC masks it, is that in general there is a collation symbol for each possible multibyte-character lead byte, so all the lead bytes are in general already part of the fastmap. The tests use cyrillic characters as an example. With _LIBC, they pass without the patch too, but you can make them fail by removing collation symbols handling.
* Add test case for last fixed regex bug.Ulrich Drepper2009-08-231-0/+1
|
* Implement execvpe.Ulrich Drepper2009-06-021-1/+1
| | | | | There is some existing practice in other OSes and it's trivial to implement giving the existing code. Fixes BZ #10221.
* [BZ #7095]Ulrich Drepper2009-02-071-2/+6
| | | | | | | | | | | | | | | | | | 2009-02-06 Ulrich Drepper <drepper@redhat.com> [BZ #7095] * bits/confname.h: Add SUSv7 macros for getconf environments. * bits/environments.h: Likewise. * sysdeps/unix/sysv/linux/i386/bits/environments.h: Likewise. * sysdeps/unix/sysv/linux/powerpc/bits/environments.h: Likewise. * sysdeps/unix/sysv/linux/s390/bits/environments.h: Likewise. * sysdeps/unix/sysv/linux/sparc/bits/environments.h: Likewise. * sysdeps/unix/sysv/linux/x86_64/bits/environments.h: Likewise. * posix/confstr.c: Handle SUSv5 and SUSv7 environments. * posix/getconf.c: Likewise. * posix/sysconf.c: Likewise. * sysdeps/posix/sysconf.c: Likewise. * posix/Makefile (getconf.speclist): Also collect SUSv5 and SUSv7 environments.
* * sysdeps/posix/getaddrinfo.c (defaults_scopes, scopes): New variables.Ulrich Drepper2007-11-201-0/+1
| | | | | | | | | | | | | (get_scope): For IPv4 scope, use scopes table. (fini): Free scopes table if necessary. (free_scopelist): New function. (scopecmp): New function. (gaiconf_init): Also handle scopev4 entries. * posix/tst-rfc3484.c (do_test): Initialize scopes. * posix/tst-rfc3484-2.c (do_test): Likewise. * posix/gai.conf: Document scopev4 defaults. * posix/Makefile (tests): Add tst-rfc3484-3. * posix/tst-rfc3484-3.c: New file.
* * posix/Makefile ($(objpfx)getconf.speclist): Make it empty if crossRoland McGrath2007-09-111-0/+4
| | | | compiling.
* 2007-08-04 Roland McGrath <roland@redhat.com>Roland McGrath2007-08-041-1/+1
| | | | * posix/Makefile ($(objpfx)getconf.speclist): Fix typo.
* 2007-08-02 Roland McGrath <roland@redhat.com>Roland McGrath2007-08-021-8/+12
| | | | | | | | * posix/Makefile ($(inst_libexecdir)/getconf): Make hard links to $(inst_bindir)/getconf if possible. * posix/Makefile ($(objpfx)getconf.speclist): New target. (generated): Add it. ($(inst_libexecdir)/getconf): Use it.
* * posix/Makefile (routines): Add sched_cpualloc and sched_cpufree.Ulrich Drepper2007-07-291-2/+2
| | | | | | | | | | | | (tests): Add tst-cpuset. * posix/sched_cpualloc.c: New file. * posix/sched_cpufree.c: New file. * posix/tst-cpuset.c: New file. * posix/Versions: Export __sched_cpualloc and __sched_cpufree for GLIBC_2.7. * sysdeps/unix/sysv/linux/bits/sched.h: Define __CPU_*_S macros. * posix/sched.h: Define old CPU_* macros in temers of __CPU_*_S macros. Define CPU_*_S macros.
* 2007-07-24 Roland McGrath <roland@redhat.com>Roland McGrath2007-07-241-1/+1
| | | | | | | * iconv/Makefile (install-others-programs): Set this instead of install-others. * login/Makefile (install-others-programs): Likewise. * posix/Makefile (install-others-programs): Likewise.
* * posix/Makefile (routines): Add sched_cpucount.Ulrich Drepper2007-04-031-2/+2
| | | | | | | (tests): Add tst-cpucount. * posix/sched_cpucount.c: New file. * posix/tst-cpucount.c: New file. * posix/Versions: Export __sched_cpucount with version GLIBC_2.6.
* * posix/fnmatch.c (STRUCT): Define.Ulrich Drepper2007-04-011-1/+1
| | | | | | | | | | | | (fnmatch): Pass NULL as last argument to internal_fn{,w}match. * posix/fnmatch_loop.c (struct STRUCT): New type. (FCT): Add ends argument. If ends != NULL and normal * is seen in the pattern, store current pattern and string pointers and return. Adjust recursive calls. (EXT): Adjust FCT callers. (STRUCT): Undef at the end of the file. * posix/Makefile (tests): Add tst-fnmatch2. * posix/tst-fnmatch2.c: New test.
* [BZ #3957]Ulrich Drepper2007-02-051-1/+2
| | | | | | | | | | | 2007-02-05 Jakub Jelinek <jakub@redhat.com> [BZ #3957] * posix/regcomp.c (parse_bracket_exp): Set '\n' bit rather than '\0' bit for RE_HAT_LISTS_NOT_NEWLINE. (build_charclass_op): Remove bogus comment. * posix/Makefile (tests): Add bug-regex27 and bug-regex28. * posix/bug-regex27.c: New test. * posix/bug-regex28.c: New test.