glibc/support
Florian Weimer f47ae51866 support: Implement --verbose option for test programs
Some tests can produce rather verbose tracing information,
and the --verbose option provides a standardized way to enable
such logging output.
2016-12-31 18:51:15 +01:00
..
check.c support: Use support_record_failure consistently 2016-12-31 18:51:15 +01:00
check.h support: Use support_record_failure consistently 2016-12-31 18:51:15 +01:00
delayed_exit.c support: Use support_record_failure consistently 2016-12-31 18:51:15 +01:00
ignore_stderr.c
Makefile support: Helper functions for entering namespaces 2016-12-31 18:51:07 +01:00
namespace.h support: Helper functions for entering namespaces 2016-12-31 18:51:07 +01:00
oom_error.c
README
README-testing.c
set_fortify_handler.c
support_become_root.c support: Helper functions for entering namespaces 2016-12-31 18:51:07 +01:00
support_enter_network_namespace.c support: Helper functions for entering namespaces 2016-12-31 18:51:07 +01:00
support_record_failure.c support: Use support_record_failure consistently 2016-12-31 18:51:15 +01:00
support_test_main.c support: Implement --verbose option for test programs 2016-12-31 18:51:15 +01:00
support_test_verify_impl.c support: Use support_record_failure consistently 2016-12-31 18:51:15 +01:00
support.h
temp_file-internal.h
temp_file.c
temp_file.h
test-driver.c support: Implement --verbose option for test programs 2016-12-31 18:51:15 +01:00
test-driver.h support: Implement --verbose option for test programs 2016-12-31 18:51:15 +01:00
tst-support_record_failure-2.sh support: Implement --verbose option for test programs 2016-12-31 18:51:15 +01:00
tst-support_record_failure.c support: Implement --verbose option for test programs 2016-12-31 18:51:15 +01:00
tst-support-namespace.c support: Helper functions for entering namespaces 2016-12-31 18:51:07 +01:00
write_message.c
xasprintf.c support: Use support_record_failure consistently 2016-12-31 18:51:15 +01:00
xcalloc.c
xfork.c support: Use support_record_failure consistently 2016-12-31 18:51:15 +01:00
xmalloc.c
xpthread_barrier_destroy.c
xpthread_barrier_init.c
xpthread_barrier_wait.c
xpthread_cancel.c
xpthread_check_return.c support: Use support_record_failure consistently 2016-12-31 18:51:15 +01:00
xpthread_cond_wait.c
xpthread_create.c
xpthread_detach.c
xpthread_join.c
xpthread_mutex_lock.c
xpthread_mutex_unlock.c
xpthread_sigmask.c
xpthread_spin_lock.c
xpthread_spin_unlock.c
xrealloc.c
xsignal.h
xsocket.c support: Use support_record_failure consistently 2016-12-31 18:51:15 +01:00
xsocket.h support: Helper functions for entering namespaces 2016-12-31 18:51:07 +01:00
xthread.h
xunistd.h support: Add support for delayed test failure reporting 2016-12-28 13:37:18 +01:00
xwaitpid.c support: Use support_record_failure consistently 2016-12-31 18:51:15 +01:00

This subdirectory contains infrastructure which is not put into
installed libraries, but may be linked into programs (installed or
not) and tests.

# Error-checking wrappers

These wrappers test for error return codes an terminate the process on
error.  They are declared in these header files:

* support.h
* xsignal.h
* xthread.h

In general, new wrappers should be added to support.h if possible.
However, support.h must remain fully compatible with C90 and therefore
cannot include headers which use identifers not reserved in C90.  If
the wrappers need additional types, additional headers such as
signal.h need to be introduced.

# Test framework

The test framework provides a main program for tests, including a
timeout for hanging tests.  See README-testing.c for a minimal
example, and test-driver.c for details how to use it.  The following
header files provide related declarations:

* check.h
* temp_file.h
* test-driver.h