diff options
author | Joseph Myers <joseph@codesourcery.com> | 2014-02-27 03:25:27 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2014-02-27 03:25:27 +0000 |
commit | f8c17e79fab13a3d1de976c1c3564df7f8c2a175 (patch) | |
tree | 3192a7221761cb0a42279698044f338c961ccc1e /posix | |
parent | a5f891ac8df09e56ecc64bf18a839a06470deacd (diff) | |
download | glibc-f8c17e79fab13a3d1de976c1c3564df7f8c2a175.tar.gz glibc-f8c17e79fab13a3d1de976c1c3564df7f8c2a175.tar.xz glibc-f8c17e79fab13a3d1de976c1c3564df7f8c2a175.zip |
Support expected failures in .test-result files.
This patch, an updated version of <https://sourceware.org/ml/libc-alpha/2014-01/msg00195.html>, makes it possible for .test-result files for individual tests to contain XPASS and XFAIL rather than PASS and FAIL in cases where failure is expected. This replaces the marking of two individual tests with "-" to cause them to be expected at makefile level to fail; evaluate-test.sh will ensure it exits with status 0 for an expected failure. Tested x86_64. * scripts/evaluate-test.sh: Take new argument indicating whether failure is expected. * Makeconfig (evaluate-test): Pass argument to evaluate-test.sh indicating whether failure is expected. * conform/Makefile (test-xfail-run-conformtest): New variable. ($(objpfx)run-conformtest.out): Don't expect to fail at makefile level. * posix/Makefile (test-xfail-annexc): New variable. ($(objpfx)annexc.out): Don't expect to fail at makefile level.
Diffstat (limited to 'posix')
-rw-r--r-- | posix/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/posix/Makefile b/posix/Makefile index 304238ffe8..b41055a509 100644 --- a/posix/Makefile +++ b/posix/Makefile @@ -233,8 +233,9 @@ tests: $(objpfx)bug-regex2-mem $(objpfx)bug-regex14-mem \ xtests: $(objpfx)bug-ga2-mem endif +test-xfail-annexc = yes $(objpfx)annexc.out: $(objpfx)annexc - -$(dir $<)$(notdir $<) '$(CC)' \ + $(dir $<)$(notdir $<) '$(CC)' \ '$(patsubst %,-I../%,$(sorted-subdirs)) -I../include $(+sysdep-includes) $(sysincludes) -I..' > $@; \ $(evaluate-test) |