diff options
author | Joseph Myers <joseph@codesourcery.com> | 2012-11-07 19:36:48 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2012-11-07 19:36:48 +0000 |
commit | 05bcf62afbfcf1a42ef2d8e80e0dba887d970781 (patch) | |
tree | c83528edc34f837ad2ce15e54c890d25faf14ad7 /conform/conformtest.pl | |
parent | 01f34a3bd8c087ca4be0bd24857e454c8d29f20b (diff) | |
download | glibc-05bcf62afbfcf1a42ef2d8e80e0dba887d970781.tar.gz glibc-05bcf62afbfcf1a42ef2d8e80e0dba887d970781.tar.xz glibc-05bcf62afbfcf1a42ef2d8e80e0dba887d970781.zip |
conformtest: Clean up / correct / expand C99 and C11 expectations.
Diffstat (limited to 'conform/conformtest.pl')
-rw-r--r-- | conform/conformtest.pl | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/conform/conformtest.pl b/conform/conformtest.pl index af21941596..ec2e9c308b 100644 --- a/conform/conformtest.pl +++ b/conform/conformtest.pl @@ -20,16 +20,16 @@ if (@headers == ()) { "sys/stat.h", "sys/socket.h", "sys/shm.h", "sys/sem.h", "sys/select.h", "sys/resource.h", "sys/msg.h", "sys/mman.h", "sys/ipc.h", "syslog.h", "stropts.h", "strings.h", "string.h", - "stdlib.h", "stdio.h", "stdint.h", "stddef.h", "stdarg.h", - "spawn.h", "signal.h", "setjmp.h", "semaphore.h", "search.h", - "sched.h", "regex.h", "pwd.h", "pthread.h", "poll.h", - "nl_types.h", "netinet/tcp.h", "netinet/in.h", "net/if.h", - "netdb.h", "ndbm.h", "mqueue.h", "monetary.h", "math.h", - "locale.h", "libgen.h", "limits.h", "langinfo.h", "iso646.h", - "inttypes.h", "iconv.h", "grp.h", "glob.h", "ftw.h", "fnmatch.h", - "fmtmsg.h", "float.h", "fenv.h", "fcntl.h", "errno.h", "dlfcn.h", - "dirent.h", "ctype.h", "cpio.h", "complex.h", "assert.h", - "arpa/inet.h", "aio.h"); + "stdnoreturn.h", "stdlib.h", "stdio.h", "stdint.h", "stddef.h", + "stdbool.h", "stdarg.h", "stdalign.h", "spawn.h", "signal.h", + "setjmp.h", "semaphore.h", "search.h", "sched.h", "regex.h", + "pwd.h", "pthread.h", "poll.h", "nl_types.h", "netinet/tcp.h", + "netinet/in.h", "net/if.h", "netdb.h", "ndbm.h", "mqueue.h", + "monetary.h", "math.h", "locale.h", "libgen.h", "limits.h", + "langinfo.h", "iso646.h", "inttypes.h", "iconv.h", "grp.h", + "glob.h", "ftw.h", "fnmatch.h", "fmtmsg.h", "float.h", "fenv.h", + "fcntl.h", "errno.h", "dlfcn.h", "dirent.h", "ctype.h", "cpio.h", + "complex.h", "assert.h", "arpa/inet.h", "aio.h"); } $CFLAGS{"ISO"} = "-ansi"; @@ -777,7 +777,7 @@ while ($#headers >= 0) { while ($#allowheader >= 0) { my($ah) = pop @allowheader; - open (ALLOW, "$CC -E -D$standard - < data/$ah-data |"); + open (ALLOW, "$CC -E -D$standard -x c data/$ah-data |"); acontrol: while (<ALLOW>) { chop; next acontrol if (/^#/); |