glibc/posix
Zack Weinberg 7c3018f9e4 Suppress internal declarations for most of the testsuite.
This patch adds a new build module called 'testsuite'.
IS_IN (testsuite) implies _ISOMAC, as do IS_IN_build and __cplusplus
(which means several ad-hoc tests for __cplusplus can go away).
libc-symbols.h now suppresses almost all of *itself* when _ISOMAC is
defined; in particular, _ISOMAC mode does not get config.h
automatically anymore.

There are still quite a few tests that need to see internal gunk of
one variety or another.  For them, we now have 'tests-internal' and
'test-internal-extras'; files in this category will still be compiled
with MODULE_NAME=nonlib, and everything proceeds as it always has.
The bulk of this patch is moving tests from 'tests' to
'tests-internal'.  There is also 'tests-static-internal', which has
the same effect on files in 'tests-static', and 'modules-names-tests',
which has the *inverse* effect on files in 'modules-names' (it's
inverted because most of the things in modules-names are *not* tests).
For both of these, the file must appear in *both* the new variable and
the old one.

There is also now a special case for when libc-symbols.h is included
without MODULE_NAME being defined at all.  (This happens during the
creation of libc-modules.h, and also when preprocessing Versions
files.)  When this happens, IS_IN is set to be always false and
_ISOMAC is *not* defined, which was the status quo, but now it's
explicit.

The remaining changes to C source files in this patch seemed likely to
cause problems in the absence of the main change.  They should be
relatively self-explanatory.  In a few cases I duplicated a definition
from an internal header rather than move the test to tests-internal;
this was a judgement call each time and I'm happy to change those
however reviewers feel is more appropriate.

	* Makerules: New subdir configuration variables 'tests-internal'
	and 'test-internal-extras'.  Test files in these categories will
	still be compiled with MODULE_NAME=nonlib.  Test files in the
	existing categories (tests, xtests, test-srcs, test-extras) are
	now compiled with MODULE_NAME=testsuite.
	New subdir configuration variable 'modules-names-tests'.  Files
	which are in both 'modules-names' and 'modules-names-tests' will
	be compiled with MODULE_NAME=testsuite instead of
	MODULE_NAME=extramodules.
	(gen-as-const-headers): Move to tests-internal.
	(do-tests-clean, common-mostlyclean): Support tests-internal.
	* Makeconfig (built-modules): Add testsuite.
	* Makefile: Change libof-check-installed-headers-c and
	libof-check-installed-headers-cxx to 'testsuite'.
	* Rules: Likewise.  Support tests-internal.
	* benchtests/strcoll-inputs/filelist#en_US.UTF-8:
	Remove extra-modules.mk.

	* config.h.in: Don't check for __OPTIMIZE__ or __FAST_MATH__ here.
	* include/libc-symbols.h: Move definitions of _GNU_SOURCE,
	PASTE_NAME, PASTE_NAME1, IN_MODULE, IS_IN, and IS_IN_LIB to the
	very top of the file and rationalize their order.
	If MODULE_NAME is not defined at all, define IS_IN to always be
	false, and don't define _ISOMAC.
	If any of IS_IN (testsuite), IS_IN_build, or __cplusplus are
	true, define _ISOMAC and suppress everything else in this file,
	starting with the inclusion of config.h.
	Do check for inappropriate definitions of __OPTIMIZE__ and
	__FAST_MATH__ here, but only if _ISOMAC is not defined.
        Correct some out-of-date commentary.

	* include/math.h: If _ISOMAC is defined, undefine NO_LONG_DOUBLE
	and _Mlong_double_ before including math.h.
	* include/string.h: If _ISOMAC is defined, don't expose
	_STRING_ARCH_unaligned. Move a comment to a more appropriate
	location.

	* include/errno.h, include/stdio.h, include/stdlib.h, include/string.h
	* include/time.h, include/unistd.h, include/wchar.h: No need to
	check __cplusplus nor use __BEGIN_DECLS/__END_DECLS.

	* misc/sys/cdefs.h (__NTHNL): New macro.
	* sysdeps/m68k/m680x0/fpu/bits/mathinline.h
	(__m81_defun): Use __NTHNL to avoid errors with GCC 6.

	* elf/tst-env-setuid-tunables.c: Include config.h with _LIBC
	defined, for HAVE_TUNABLES.
	* inet/tst-checks-posix.c: No need to define _ISOMAC.
	* intl/tst-gettext2.c: Provide own definition of N_.
	* math/test-signgam-finite-c99.c: No need to define _ISOMAC.
	* math/test-signgam-main.c: No need to define _ISOMAC.
	* stdlib/tst-strtod.c: Convert to test-driver. Split locale_test to...
	* stdlib/tst-strtod1i.c: ...this new file.
	* stdlib/tst-strtod5.c: Convert to test-driver and add copyright notice.
        Split tests of __strtod_internal to...
	* stdlib/tst-strtod5i.c: ...this new file.
	* string/test-string.h: Include stdint.h. Duplicate definition of
	inhibit_loop_to_libcall here (from libc-symbols.h).
	* string/test-strstr.c: Provide dummy definition of
	libc_hidden_builtin_def when including strstr.c.
	* sysdeps/ia64/fpu/libm-symbols.h: Suppress entire file in _ISOMAC
	mode; no need to test __STRICT_ANSI__ nor __cplusplus as well.
	* sysdeps/x86_64/fpu/math-tests-arch.h: Include cpu-features.h.
	Don't include init-arch.h.
	* sysdeps/x86_64/multiarch/test-multiarch.h: Include cpu-features.h.
	Don't include init-arch.h.

	* elf/Makefile: Move tst-ptrguard1-static, tst-stackguard1-static,
	tst-tls1-static, tst-tls2-static, tst-tls3-static, loadtest,
	unload, unload2, circleload1, neededtest, neededtest2,
	neededtest3, neededtest4, tst-tls1, tst-tls2, tst-tls3,
	tst-tls6, tst-tls7, tst-tls8, tst-dlmopen2, tst-ptrguard1,
	tst-stackguard1, tst-_dl_addr_inside_object, and all of the
	ifunc tests to tests-internal.
	Don't add $(modules-names) to test-extras.
	* inet/Makefile: Move tst-inet6_scopeid_pton to tests-internal.
	Add tst-deadline to tests-static-internal.
	* malloc/Makefile: Move tst-mallocstate and tst-scratch_buffer to
	tests-internal.
	* misc/Makefile: Move tst-atomic and tst-atomic-long to tests-internal.
	* nptl/Makefile: Move tst-typesizes, tst-rwlock19, tst-sem11,
	tst-sem12, tst-sem13, tst-barrier5, tst-signal7, tst-tls3,
	tst-tls3-malloc, tst-tls5, tst-stackguard1, tst-sem11-static,
	tst-sem12-static, and tst-stackguard1-static to tests-internal.
        Link tests-internal with libpthread also.
	Don't add $(modules-names) to test-extras.
	* nss/Makefile: Move tst-field to tests-internal.
	* posix/Makefile: Move bug-regex5, bug-regex20, bug-regex33,
	tst-rfc3484, tst-rfc3484-2, and tst-rfc3484-3 to tests-internal.
	* stdlib/Makefile: Move tst-strtod1i, tst-strtod3, tst-strtod4,
	tst-strtod5i, tst-tls-atexit, and tst-tls-atexit-nodelete to
	tests-internal.
        * sunrpc/Makefile: Move tst-svc_register to tests-internal.
	* sysdeps/powerpc/Makefile: Move test-get_hwcap and
	test-get_hwcap-static to tests-internal.
	* sysdeps/unix/sysv/linux/Makefile: Move tst-setgetname to
	tests-internal.
	* sysdeps/x86_64/fpu/Makefile: Add all libmvec test modules to
	modules-names-tests.
2017-05-11 19:27:59 -04:00
..
bits getopt: annotate files with relationship to gnulib. 2017-04-07 07:53:37 -04:00
rxspencer [BZ 697] 2009-01-08 00:47:30 +00:00
sys Fix network headers stdint.h namespace (bug 21455). 2017-05-04 20:36:42 +00:00
_exit.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
alarm.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
annexc.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
BOOST.tests
bsd-getpgrp.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
bug-ga1.c * posix/bug-ga1.c: Include <string.h> for memset prototype. 2004-02-21 18:40:55 +00:00
bug-ga2.c
bug-getopt1.c Add tests for recent getopt changes. 2010-04-07 22:59:40 -07:00
bug-getopt2.c Add tests for recent getopt changes. 2010-04-07 22:59:40 -07:00
bug-getopt3.c Add tests for recent getopt changes. 2010-04-07 22:59:40 -07:00
bug-getopt4.c getopt: refactor long-option handling 2017-04-07 07:51:28 -04:00
bug-getopt5.c Add tests for recent getopt changes. 2010-04-07 22:59:40 -07:00
bug-glob1.c Update. 2004-10-01 15:44:06 +00:00
bug-glob2.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
bug-glob3.c Add test for last glob bug. 2010-03-24 12:10:51 -07:00
bug-regex1.c
bug-regex2.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
bug-regex3.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
bug-regex4.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
bug-regex5.c Add #include <stdint.h> for uint[32|64]_t usage (except installed headers). 2013-05-16 11:32:54 -05:00
bug-regex6.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
bug-regex7.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
bug-regex8.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
bug-regex9.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
bug-regex10.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
bug-regex11.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
bug-regex12.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
bug-regex13.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
bug-regex14.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
bug-regex15.c
bug-regex16.c Update. 2003-01-16 19:20:36 +00:00
bug-regex17.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
bug-regex18.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
bug-regex19.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
bug-regex20.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
bug-regex21.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
bug-regex22.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
bug-regex23.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
bug-regex24.c
bug-regex25.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
bug-regex26.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
bug-regex27.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
bug-regex28.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
bug-regex29.c Add missing stdio.h include. 2009-11-14 19:11:44 -08:00
bug-regex30.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
bug-regex31.c Fix warning in posix/bug-regex31.c. 2014-11-25 21:40:51 +00:00
bug-regex31.input One more regex memory leak fixed. 2010-10-12 09:00:33 -04:00
bug-regex32.c Fix unnecessary overallocation due to incomplete character 2011-05-28 17:14:30 -04:00
bug-regex33.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
bug-regex34.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
bug-regex35.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
bug-regex36.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
confstr.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
cpio.h Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
Depend
environ.c Moved to csu/errno-loc.c. 2005-12-14 15:06:39 +00:00
execl.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
execle.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
execlp.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
execv.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
execve.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
execvp.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
execvpe.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
fexecve.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
fnmatch_loop.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
fnmatch.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
fnmatch.h Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
fork.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
fpathconf.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
gai_strerror.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
gai.conf [BZ #11438] 2012-09-28 10:15:05 -06:00
get_child_max.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
getaddrinfo.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
getconf-speclist.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
getconf.c Update copyright dates not handled by scripts/update-copyrights. 2017-01-01 00:26:24 +00:00
getegid.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
geteuid.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
getgid.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
getgroups.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
getopt1.c getopt: merge from gnulib: use angle-bracket includes consistently 2017-04-07 07:56:40 -04:00
getopt_int.h getopt: annotate files with relationship to gnulib. 2017-04-07 07:53:37 -04:00
getopt.c getopt: annotate files with relationship to gnulib. 2017-04-07 07:53:37 -04:00
getopt.h getopt: annotate files with relationship to gnulib. 2017-04-07 07:53:37 -04:00
getpgid.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
getpgrp.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
getpid.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
getppid.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
getresgid.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
getresuid.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
getsid.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
getuid.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
glob64.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
glob.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
glob.h Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
globtest.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
globtest.sh posix: Add cleanup on the trap list for globtest.sh 2017-04-12 11:01:35 -03:00
group_member.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
init-posix.c Moved to csu/errno-loc.c. 2005-12-14 15:06:39 +00:00
Makefile Suppress internal declarations for most of the testsuite. 2017-05-11 19:27:59 -04:00
nanosleep.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
pathconf.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
pause.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
PCRE.tests Update. 2004-11-25 22:32:18 +00:00
posix_madvise.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
posix-conf-vars.h Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
posix-conf-vars.list Use posix-conf-vars.list to generate spec array 2014-12-29 19:56:27 +05:30
posix-envs.def Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
pread64.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
pread.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
ptestcases.h
PTESTS Update. 2003-11-26 03:24:15 +00:00
PTESTS2C.sed
pwrite64.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
pwrite.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
re_comp.h Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
regcomp.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
regex_internal.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
regex_internal.h Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
regex.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
regex.h Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
regexbug1.c Fix -Wformat-security warnings in posix/regexbug1.c 2014-12-11 13:08:26 -08:00
regexec.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
runptests.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
runtests.c * nss/nsswitch.c (__nss_lookup_function): Don't cast &ni->known to 2007-07-28 20:36:21 +00:00
sched_cpualloc.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
sched_cpucount.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
sched_cpufree.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
sched_getaffinity.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
sched_getp.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
sched_gets.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
sched_primax.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
sched_primin.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
sched_rr_gi.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
sched_setaffinity.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
sched_setp.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
sched_sets.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
sched_yield.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
sched.h Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
setgid.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
setpgid.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
setpgrp.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
setresgid.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
setresuid.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
setsid.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
setuid.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
sleep.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
spawn_faction_addclose.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
spawn_faction_adddup2.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
spawn_faction_addopen.c Remove the str(n)dup inlines from string/bits/string2.h. Although inlining 2017-03-13 18:45:42 +00:00
spawn_faction_destroy.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
spawn_faction_init.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
spawn_int.h Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
spawn_valid_fd.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
spawn.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
spawn.h [BZ 21340] add support for POSIX_SPAWN_SETSID 2017-04-25 08:51:12 -03:00
spawnattr_destroy.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
spawnattr_getdefault.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
spawnattr_getflags.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
spawnattr_getpgroup.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
spawnattr_getschedparam.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
spawnattr_getschedpolicy.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
spawnattr_getsigmask.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
spawnattr_init.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
spawnattr_setdefault.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
spawnattr_setflags.c [BZ 21340] add support for POSIX_SPAWN_SETSID 2017-04-25 08:51:12 -03:00
spawnattr_setpgroup.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
spawnattr_setschedparam.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
spawnattr_setschedpolicy.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
spawnattr_setsigmask.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
spawni.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
spawnp.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
sysconf.c timezone: Remove TZNAME_MAX limit from sysconf [BZ #15576] 2017-03-07 17:45:38 +01:00
tar.h Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
test-errno.c Fix sys/socket.h namespace issues from sys/uio.h inclusion (bug 21426). 2017-04-25 17:52:47 +00:00
test-vfork.c Use (void) in no-arguments function definitions. 2013-06-08 00:22:23 +00:00
testcases.h Update. 2000-01-18 10:53:15 +00:00
testfnm.c FIx handling of unterminated [ expression in fnmatch. 2011-01-14 08:06:22 -05:00
TESTS Update. 2000-01-18 10:53:15 +00:00
TESTS2C.sed 1997-05-03 00:53 Ulrich Drepper <drepper@cygnus.com> 1997-05-03 00:33:54 +00:00
times.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
transbug.c Fix executable mode. 2013-06-06 02:15:33 +02:00
tst-boost.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
tst-chmod.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
tst-cpucount.c When iterating over CPU bitmask, don't try more than CPU_SETSIZE. 2009-06-15 21:12:57 -07:00
tst-cpuset.c * posix/Makefile (routines): Add sched_cpualloc and sched_cpufree. 2007-07-29 22:24:44 +00:00
tst-dir.c Split DIAG_* macros to new header libc-diag.h. 2017-02-25 09:59:46 -05:00
tst-exec-static.c Support run tst-exec and tst-spawn directly 2013-01-10 14:14:55 -08:00
tst-exec.c support: Prevent multiple deletion of temporary files 2017-05-08 16:20:40 +02:00
tst-execl1.c Test for exec function. 2005-02-23 02:42:55 +00:00
tst-execl2.c
tst-execle1.c 2005-12-27 Roland McGrath <roland@redhat.com> 2005-12-27 22:49:45 +00:00
tst-execle2.c 2005-12-27 Roland McGrath <roland@redhat.com> 2005-12-27 22:49:45 +00:00
tst-execlp1.c Test for exec function. 2005-02-23 02:42:55 +00:00
tst-execlp2.c
tst-execv1.c
tst-execv2.c
tst-execve1.c Test for exec function. 2005-02-23 02:42:55 +00:00
tst-execve2.c Test for exec function. 2005-02-23 02:42:55 +00:00
tst-execvp1.c posix: execvpe cleanup 2016-03-07 00:21:37 -03:00
tst-execvp2.c posix: execvpe cleanup 2016-03-07 00:21:37 -03:00
tst-execvp3.c posix: execvpe cleanup 2016-03-07 00:21:37 -03:00
tst-execvp4.c posix: execvpe cleanup 2016-03-07 00:21:37 -03:00
tst-execvpe1.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
tst-execvpe2.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
tst-execvpe3.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
tst-execvpe4.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
tst-execvpe5.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
tst-execvpe6.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
tst-fnmatch2.c FIx handling of unterminated [ expression in fnmatch. 2011-01-14 08:06:22 -05:00
tst-fnmatch3.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
tst-fnmatch.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
tst-fnmatch.input Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
tst-fork.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
tst-getaddrinfo2.c Add missing header files throughout the testsuite. 2017-02-16 17:33:18 -05:00
tst-getaddrinfo3.c * posix/Makefile (tests): Add tst-getaddrinfo3. 2006-04-30 20:19:09 +00:00
tst-getaddrinfo4.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
tst-getaddrinfo5.c Add missing header files throughout the testsuite. 2017-02-16 17:33:18 -05:00
tst-getaddrinfo.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
tst-getconf.sh Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
tst-getopt_long1.c getopt: merge from gnulib: alloca avoidance 2017-04-07 07:51:52 -04:00
tst-getopt-cancel.c getopt: clean up error reporting 2017-04-07 07:48:57 -04:00
tst-gnuglob.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
tst-mmap-offset.c A third round of inclusion fixes for _ISOMAC testsuite. 2017-04-19 14:39:04 -04:00
tst-mmap.c Modify several tests to use test-skeleton.c 2014-11-05 15:24:08 +05:30
tst-nanosleep.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
tst-nice.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
tst-pathconf.c support: Prevent multiple deletion of temporary files 2017-05-08 16:20:40 +02:00
tst-pcre.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
tst-posix_fadvise64.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
tst-posix_fadvise-common.c Add missing header files throughout the testsuite. 2017-02-16 17:33:18 -05:00
tst-posix_fadvise.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
tst-posix_spawn-fd.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
tst-posix_spawn-setsid.c [BZ 21340] add support for POSIX_SPAWN_SETSID 2017-04-25 08:51:12 -03:00
tst-preadwrite64.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
tst-preadwrite-common.c Add missing header files throughout the testsuite. 2017-02-16 17:33:18 -05:00
tst-preadwrite.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
tst-regex2.c Update. 2004-12-10 00:41:30 +00:00
tst-regex.c Add missing header files throughout the testsuite. 2017-02-16 17:33:18 -05:00
tst-regexloc.c Add missing header files throughout the testsuite. 2017-02-16 17:33:18 -05:00
tst-rfc3484-2.c Fix qsort_r namespace (bug 17571). 2014-11-12 22:33:41 +00:00
tst-rfc3484-3.c Fix qsort_r namespace (bug 17571). 2014-11-12 22:33:41 +00:00
tst-rfc3484.c Fix qsort_r namespace (bug 17571). 2014-11-12 22:33:41 +00:00
tst-rxspencer-no-utf8.c Split up rules for tests using mtrace and something else. 2014-02-14 13:45:14 +00:00
tst-rxspencer.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
tst-spawn2.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
tst-spawn3.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
tst-spawn-static.c Support run tst-exec and tst-spawn directly 2013-01-10 14:14:55 -08:00
tst-spawn.c support: Prevent multiple deletion of temporary files 2017-05-08 16:20:40 +02:00
tst-sysconf.c Hurd: Update posix_opt.h 2012-05-10 15:57:27 -07:00
tst-truncate64.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
tst-truncate-common.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
tst-truncate.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
tst-vfork1.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
tst-vfork2.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
tst-vfork3.c support: Prevent multiple deletion of temporary files 2017-05-08 16:20:40 +02:00
tst-waitid.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
tstgetopt.c Update. 2000-09-06 18:07:07 +00:00
uname-values.h Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
uname.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
unistd.h getopt: eliminate __need_getopt by splitting up getopt.h. 2017-04-07 07:53:03 -04:00
Versions Fix aio_* pread namespace (bug 18519). 2015-06-12 17:34:11 +00:00
vfork.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
wait3.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
wait4.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
wait.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
wait.h update from main archive 961126 1996-11-27 06:13:15 +00:00
waitid.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
waitpid.c Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
wordexp-test.c Narrowing the visibility of libc-internal.h even further. 2017-03-01 20:33:46 -05:00
wordexp-tst.sh Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00
wordexp.c Assume that O_CLOEXEC is always defined and works 2017-04-18 14:56:51 +02:00
wordexp.h Update copyright dates with scripts/update-copyrights. 2017-01-01 00:14:16 +00:00