aboutsummaryrefslogtreecommitdiff
path: root/support/Makefile
AgeCommit message (Collapse)AuthorFilesLines
2016-12-31resolv: Add beginnings of a libresolv test suiteFlorian Weimer1-0/+27
2016-12-31support: Helper functions for entering namespacesFlorian Weimer1-0/+4
2016-12-30Fix tst-support_record_failure-2 for run-built-tests = no.Joseph Myers1-0/+2
The support/tst-support_record_failure-2.out test attempts to run built code even if run-built-tests = no, so failing with build-many-glibcs.py for all architectures whose code cannot be run on the system running the script. This patch disables the test in that case. Tested for x86_64 (native), and for aarch64 with build-many-glibcs.py. * support/Makefile (tests-special): Make definition conditional on [$(run-built-tests) = yes]. ($(objpfx)tst-support_record_failure-2.out): Make rule conditional on [$(run-built-tests) = yes].
2016-12-28support: Add support for delayed test failure reportingFlorian Weimer1-1/+17
The new functions support_record_failure records a test failure, but does not terminate the process. The macros TEST_VERIFY and TEST_VERIFY_EXIT check that a condition is true.
2016-12-09support: Introduce new subdirectory for test infrastructureFlorian Weimer1-0/+64
The new test driver in <support/test-driver.c> has feature parity with the old one. The main difference is that its hooking mechanism is based on functions and function pointers instead of macros. This commit also implements a new environment variable, TEST_COREDUMPS, which disables the code which disables coredumps (that is, it enables them if the invocation environment has not disabled them). <test-skeleton.c> defines wrapper functions so that it is possible to use existing macros with the new-style hook functionality. This commit changes only a few test cases to the new test driver, to make sure that it works as expected.