diff options
author | Joseph Myers <joseph@codesourcery.com> | 2016-05-09 21:10:10 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2016-05-09 21:10:10 +0000 |
commit | 9e6e128d145157844cf446962a640eacafc54a01 (patch) | |
tree | c3b251812aceaa6b9159a79c0ae96d578132ce49 /conform/Makefile | |
parent | b91a333ecb223a4bb104ff5a64c9ee5a194789a3 (diff) | |
download | glibc-9e6e128d145157844cf446962a640eacafc54a01.tar.gz glibc-9e6e128d145157844cf446962a640eacafc54a01.tar.xz glibc-9e6e128d145157844cf446962a640eacafc54a01.zip |
conformtest: Remove some bogus sys/types.h expectations for XPG3 and XPG4.
The conformtest tests for sys/types.h for XPG3 and XPG4 fail because of missing blksize_t. This is a bug in the expectations; that type is not part of those standards. This patch stops the tests from expecting it, and some other types that also are not part of XPG3 and XPG4. Tested for x86_64 and x86. * conform/data/sys/types.h-data (blkcnt_t): Do not expect for [XPG3 || XPG4]. (blksize_t): Likewise. (clockid_t): Likewise. * conform/Makefile (test-xfail-XPG3/sys/types.h/conform): Remove variable. (test-xfail-XPG4/sys/types.h/conform): Likewise.
Diffstat (limited to 'conform/Makefile')
-rw-r--r-- | conform/Makefile | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/conform/Makefile b/conform/Makefile index d5273c1743..32714e74ba 100644 --- a/conform/Makefile +++ b/conform/Makefile @@ -172,7 +172,6 @@ test-xfail-XPG3/signal.h/conform = yes test-xfail-XPG3/stdlib.h/conform = yes test-xfail-XPG3/string.h/conform = yes test-xfail-XPG3/sys/stat.h/conform = yes -test-xfail-XPG3/sys/types.h/conform = yes test-xfail-XPG3/sys/wait.h/conform = yes test-xfail-XPG3/termios.h/conform = yes test-xfail-XPG3/time.h/conform = yes @@ -184,7 +183,6 @@ test-xfail-XPG4/netinet/in.h/conform = yes test-xfail-XPG4/signal.h/conform = yes test-xfail-XPG4/stdlib.h/conform = yes test-xfail-XPG4/sys/stat.h/conform = yes -test-xfail-XPG4/sys/types.h/conform = yes test-xfail-XPG4/sys/wait.h/conform = yes test-xfail-XPG4/termios.h/conform = yes test-xfail-XPG4/ucontext.h/conform = yes |