Update.
[platform/upstream/glibc.git] / conform / conformtest.pl
1 #! /usr/bin/perl
2
3 use Getopt::Long;
4
5 $CC = "gcc";
6
7 $dialect="XOPEN2K";
8 GetOptions ('headers=s' => \@headers, 'dialect=s' => \$dialect);
9 @headers = split(/,/,join(',',@headers));
10
11 # List of the headers we are testing.
12 if (@headers == ()) {
13   @headers = ("wordexp.h", "wctype.h", "wchar.h", "varargs.h", "utmpx.h",
14               "utime.h", "unistd.h", "ulimit.h", "ucontext.h", "time.h",
15               "tgmath.h", "termios.h", "tar.h", "sys/wait.h", "sys/utsname.h",
16               "sys/un.h", "sys/uio.h", "sys/types.h", "sys/times.h",
17               "sys/timeb.h", "sys/time.h", "sys/statvfs.h", "sys/stat.h",
18               "sys/socket.h", "sys/shm.h", "sys/sem.h", "sys/select.h",
19               "sys/resource.h", "sys/msg.h", "sys/mman.h", "sys/ipc.h",
20               "syslog.h", "stropts.h", "strings.h", "string.h", "stdlib.h",
21               "stdio.h", "stdint.h", "stddef.h", "stdarg.h", "spawn.h",
22               "signal.h", "setjmp.h", "semaphore.h", "search.h", "sched.h",
23               "regex.h", "pwd.h", "pthread.h", "poll.h", "nl_types.h",
24               "netinet/tcp.h", "netinet/in.h", "net/if.h", "netdb.h", "ndbm.h",
25               "mqueue.h", "monetary.h", "math.h", "locale.h", "libgen.h",
26               "limits.h", "langinfo.h", "iso646.h", "inttypes.h", "iconv.h",
27               "grp.h", "glob.h", "ftw.h", "fnmatch.h", "fmtmsg.h", "float.h",
28               "fcntl.h", "errno.h", "dlfcn.h", "dirent.h", "ctype.h", "cpio.h",
29               "complex.h", "assert.h", "arpa/inet.h", "aio.h");
30 }
31
32 if ($dialect ne "ISO" && $dialect ne "POSIX" && $dialect ne "XPG3"
33     && $dialect ne "XPG4" && $dialect ne "UNIX98" && $dialect ne "XOPEN2K") {
34   die "unknown dialect \"$dialect\"";
35 }
36
37 $CFLAGS{"ISO"} = "-I. '-D__attribute__(x)=' -ansi";
38 $CFLAGS{"POSIX"} = "-I. '-D__attribute__(x)=' -D_POSIX_C_SOURCE=199912";
39 $CFLAGS{"XPG3"} = "-I. '-D__attribute__(x)=' -D_XOPEN_SOURCE";
40 $CFLAGS{"XPG4"} = "-I. '-D__attribute__(x)=' -D_XOPEN_SOURCE_EXTENDED";
41 $CFLAGS{"UNIX98"} = "-I. '-D__attribute__(x)=' -D_XOPEN_SOURCE=500";
42 $CFLAGS{"XOPEN2K"} = "-I. '-D__attribute__(x)=' -D_XOPEN_SOURCE=600";
43
44
45 # These are the ISO C99 keywords.
46 @keywords = ('auto', 'break', 'case', 'char', 'const', 'continue', 'default',
47              'do', 'double', 'else', 'enum', 'extern', 'float', 'for', 'goto',
48              'if', 'inline', 'int', 'long', 'register', 'restrict', 'return',
49              'short', 'signed', 'sizeof', 'static', 'struct', 'switch',
50              'typedef', 'union', 'unsigned', 'void', 'volatile', 'while');
51
52 # These are symbols which are known to pollute the namespace.
53 @knownproblems = ('unix', 'linux', 'i386');
54
55 # Some headers need a bit more attention.
56 $mustprepend{'regex.h'} = "#include <sys/types.h>\n";
57 $mustprepend{'sched.h'} = "#include <sys/types.h>\n";
58 $mustprepend{'signal.h'} = "#include <pthread.h>\n";
59 $mustprepend{'wchar.h'} = "#include <stdarg.h>\n";
60 $mustprepend{'wordexp.h'} = "#include <stddef.h>\n";
61
62 # Make a hash table from this information.
63 while ($#keywords >= 0) {
64   $iskeyword{pop (@keywords)} = 1;
65 }
66
67 # Make a hash table from the known problems.
68 while ($#knownproblems >= 0) {
69   $isknown{pop (@knownproblems)} = 1;
70 }
71
72 $tmpdir = "/tmp";
73
74 $verbose = 1;
75
76 $total = 0;
77 $skipped = 0;
78 $errors = 0;
79
80
81 sub poorfnmatch {
82   my($pattern, $string) = @_;
83   my($strlen) = length ($string);
84   my($res);
85
86   if (substr ($pattern, 0, 1) eq '*') {
87     my($patlen) = length ($pattern) - 1;
88     $res = ($strlen >= $patlen
89             && substr ($pattern, -$patlen, $patlen) eq substr ($string, -$patlen, $patlen));
90   } elsif (substr ($pattern, -1, 1) eq '*') {
91     my($patlen) = length ($pattern) - 1;
92     $res = ($strlen >= $patlen
93             && substr ($pattern, 0, $patlen) eq substr ($string, 0, $patlen));
94   } else {
95     $res = $pattern eq $string;
96   }
97   return $res;
98 }
99
100
101 sub compiletest
102 {
103   my($fnamebase, $msg, $errmsg, $skip, $optional) = @_;
104   my($result) = $skip;
105   my($printlog) = 0;
106
107   ++$total;
108   printf ("  $msg...");
109
110   if ($skip != 0) {
111     ++$skipped;
112     printf (" SKIP\n");
113   } else {
114     $ret = system "$CC $CFLAGS{$dialect} -c $fnamebase.c -o $fnamebase.o > $fnamebase.out 2>&1";
115     if ($ret != 0) {
116       if ($optional != 0) {
117         printf (" $errmsg\n");
118         $result = 1;
119       } else {
120         printf (" FAIL\n");
121         if ($verbose != 0) {
122           printf ("    $errmsg  Compiler message:\n");
123           $printlog = 1;
124         }
125         ++$errors;
126         $result = 1;
127       }
128     } else {
129       printf (" OK\n");
130       if ($verbose > 1 && -s "$fnamebase.out") {
131         # We print all warnings issued.
132         $printlog = 1;
133       }
134     }
135     if ($printlog != 0) {
136       printf ("    " . "-" x 71 . "\n");
137       open (MESSAGE, "< $fnamebase.out");
138       while (<MESSAGE>) {
139         printf ("    %s", $_);
140       }
141       close (MESSAGE);
142       printf ("    " . "-" x 71 . "\n");
143     }
144   }
145   unlink "$fnamebase.c";
146   unlink "$fnamebase.o";
147   unlink "$fnamebase.out";
148
149   $result;
150 }
151
152
153 sub runtest
154 {
155   my($fnamebase, $msg, $errmsg, $skip) = @_;
156   my($result) = $skip;
157   my($printlog) = 0;
158
159   ++$total;
160   printf ("  $msg...");
161
162   if ($skip != 0) {
163     ++$skipped;
164     printf (" SKIP\n");
165   } else {
166     $ret = system "$CC $CFLAGS{$dialect} -o $fnamebase $fnamebase.c > $fnamebase.out 2>&1";
167     if ($ret != 0) {
168       printf (" FAIL\n");
169       if ($verbose != 0) {
170         printf ("    $errmsg  Compiler message:\n");
171         $printlog = 1;
172       }
173       ++$errors;
174       $result = 1;
175     } else {
176       # Now run the program.  If the exit code is not zero something is wrong.
177       $result = system "$fnamebase > $fnamebase.out2 2>&1";
178       if ($result == 0) {
179         printf (" OK\n");
180         if ($verbose > 1 && -s "$fnamebase.out") {
181           # We print all warnings issued.
182           $printlog = 1;
183           system "cat $fnamebase.out2 >> $fnamebase.out";
184         }
185       } else {
186         printf (" FAIL\n");
187         ++$errors;
188         $printlog = 1;
189         unlink "$fnamebase.out";
190         rename "$fnamebase.out2", "$fnamebase.out";
191       }
192     }
193     if ($printlog != 0) {
194       printf ("    " . "-" x 71 . "\n");
195       open (MESSAGE, "< $fnamebase.out");
196       while (<MESSAGE>) {
197         printf ("    %s", $_);
198       }
199       close (MESSAGE);
200       printf ("    " . "-" x 71 . "\n");
201     }
202   }
203   unlink "$fnamebase";
204   unlink "$fnamebase.c";
205   unlink "$fnamebase.o";
206   unlink "$fnamebase.out";
207   unlink "$fnamebase.out2";
208
209   $result;
210 }
211
212
213 sub newtoken {
214   my($token, @allow) = @_;
215   my($idx);
216
217   return if ($token =~ /^[0-9_]/ || $iskeyword{$token});
218
219   for ($idx = 0; $idx <= $#allow; ++$idx) {
220     return if (poorfnmatch ($allow[$idx], $token));
221   }
222
223   if ($isknown{$token}) {
224     ++$nknown;
225   } else {
226     ++$nerrors;
227     if ($nerrors == 1) {
228       printf ("FAIL\n    " . "-" x 72 . "\n");
229     }
230     printf ("    Namespace violation: \"%s\"\n", $token);
231   }
232 }
233
234
235 sub checknamespace {
236   my($h, $fnamebase, @allow) = @_;
237
238   ++$total;
239
240   # Generate a program to get the contents of this header.
241   open (TESTFILE, ">$fnamebase.c");
242   print TESTFILE "#include <$h>\n";
243   close (TESTFILE);
244
245   $nerrors = 0;
246   $nknown = 0;
247   open (CONTENT, "$CC $CFLAGS{$dialect} -E $fnamebase.c -P -Wp,-dN | sed -e '/^# [1-9]/d' -e '/^[[:space:]]*\$/d' |");
248   loop: while (<CONTENT>) {
249     next loop if (/^#undef /);
250     chop;
251     if (/^#define (.*)/) {
252       newtoken ($1, @allow);
253     } else {
254       # We have to tokenize the line.
255       my($str) = $_;
256       my($index) = 0;
257       my($len) = length ($str);
258
259       foreach $token (split(/[^a-zA-Z0-9_]/, $str)) {
260         if ($token ne "") {
261           newtoken ($token, @allow);
262         }
263       }
264     }
265   }
266   close (CONTENT);
267   unlink "$fnamebase.c";
268   if ($nerrors != 0) {
269     printf ("    " . "-" x 72 . "\n");
270     ++$errors;
271   } elsif ($nknown > 0) {
272     printf ("EXPECTED FAILURES\n");
273     ++$known;
274   } else {
275     printf ("OK\n");
276   }
277 }
278
279
280 while ($#headers >= 0) {
281   my($h) = pop (@headers);
282   my($hf) = $h;
283   $hf =~ s|/|-|;
284   my($fnamebase) = "$tmpdir/$hf-test";
285   my($missing);
286   my(@allow) = ();
287   my(@allowheader) = ();
288   my(%seenheader) = ();
289   my($prepend) = $mustprepend{$h};
290
291   printf ("Testing <$h>\n");
292   printf ("----------" . "-" x length ($h) . "\n");
293
294   # Generate a program to test for the availability of this header.
295   open (TESTFILE, ">$fnamebase.c");
296   print TESTFILE "$prepend";
297   print TESTFILE "#include <$h>\n";
298   close (TESTFILE);
299
300   $missing = compiletest ($fnamebase, "Checking whether <$h> is available",
301                           "Header <$h> not available", 0, 0);
302
303   printf ("\n");
304
305   open (CONTROL, "$CC -E -D$dialect - < data/$h-data |");
306   control: while (<CONTROL>) {
307     chop;
308     next control if (/^#/);
309     next control if (/^[        ]*$/);
310
311     if (/^element *({([^}]*)}|([^{ ]*)) *({([^}]*)}|([^{ ]*)) *([A-Za-z0-9_]*) *(.*)/) {
312       my($struct) = "$2$3";
313       my($type) = "$5$6";
314       my($member) = "$7";
315       my($rest) = "$8";
316       my($res) = $missing;
317
318       # Remember that this name is allowed.
319       push @allow, $member;
320
321       # Generate a program to test for the availability of this member.
322       open (TESTFILE, ">$fnamebase.c");
323       print TESTFILE "$prepend";
324       print TESTFILE "#include <$h>\n";
325       print TESTFILE "$struct a;\n";
326       print TESTFILE "$struct b;\n";
327       print TESTFILE "extern void xyzzy (__typeof__ (&b.$member), __typeof__ (&a.$member), unsigned);\n";
328       print TESTFILE "void foobarbaz (void) {\n";
329       print TESTFILE "  xyzzy (&a.$member, &b.$member, sizeof (a.$member));\n";
330       print TESTFILE "}\n";
331       close (TESTFILE);
332
333       $res = compiletest ($fnamebase, "Testing for member $member",
334                           "Member \"$member\" not available.", $res, 0);
335
336
337       # Test the types of the members.
338       open (TESTFILE, ">$fnamebase.c");
339       print TESTFILE "$prepend";
340       print TESTFILE "#include <$h>\n";
341       print TESTFILE "$struct a;\n";
342       print TESTFILE "extern $type b$rest;\n";
343       print TESTFILE "extern __typeof__ (a.$member) b;\n";
344       close (TESTFILE);
345
346       compiletest ($fnamebase, "Testing for type of member $member",
347                    "Member \"$member\" does not have the correct type.",
348                    $res, 0);
349     } elsif (/^optional-element *({([^}]*)}|([^{ ]*)) *({([^}]*)}|([^{ ]*)) *([A-Za-z0-9_]*) *(.*)/) {
350       my($struct) = "$2$3";
351       my($type) = "$5$6";
352       my($member) = "$7";
353       my($rest) = "$8";
354       my($res) = $missing;
355
356       # Remember that this name is allowed.
357       push @allow, $member;
358
359       # Generate a program to test for the availability of this member.
360       open (TESTFILE, ">$fnamebase.c");
361       print TESTFILE "$prepend";
362       print TESTFILE "#include <$h>\n";
363       print TESTFILE "$struct a;\n";
364       print TESTFILE "$struct b;\n";
365       print TESTFILE "extern void xyzzy (__typeof__ (&b.$member), __typeof__ (&a.$member), unsigned);\n";
366       print TESTFILE "void foobarbaz (void) {\n";
367       print TESTFILE "  xyzzy (&a.$member, &b.$member, sizeof (a.$member));\n";
368       print TESTFILE "}\n";
369       close (TESTFILE);
370
371       $res = compiletest ($fnamebase, "Testing for member $member",
372                           "NOT AVAILABLE.", $res, 1);
373
374       if ($res == 0 || $missing != 0) {
375         # Test the types of the members.
376         open (TESTFILE, ">$fnamebase.c");
377         print TESTFILE "$prepend";
378         print TESTFILE "#include <$h>\n";
379         print TESTFILE "$struct a;\n";
380         print TESTFILE "extern $type b$rest;\n";
381         print TESTFILE "extern __typeof__ (a.$member) b;\n";
382         close (TESTFILE);
383
384         compiletest ($fnamebase, "Testing for type of member $member",
385                      "Member \"$member\" does not have the correct type.",
386                      $res, 0);
387       }
388     } elsif (/^optional-constant *([a-zA-Z0-9_]*) ([>=<]+) ([A-Za-z0-9_]*)/) {
389       my($const) = $1;
390       my($op) = $2;
391       my($value) = $3;
392       my($res) = $missing;
393
394       # Remember that this name is allowed.
395       push @allow, $const;
396
397       # Generate a program to test for the availability of this constant.
398       open (TESTFILE, ">$fnamebase.c");
399       print TESTFILE "$prepend";
400       print TESTFILE "#include <$h>\n";
401       print TESTFILE "__typeof__ ($const) a = $const;\n";
402       close (TESTFILE);
403
404       $res = compiletest ($fnamebase, "Testing for constant $const",
405                           "NOT PRESENT", $res, 1);
406
407       if ($value ne "" && $res == 0) {
408         # Generate a program to test for the value of this constant.
409         open (TESTFILE, ">$fnamebase.c");
410         print TESTFILE "$prepend";
411         print TESTFILE "#include <$h>\n";
412         # Negate the value since 0 means ok
413         print TESTFILE "int main (void) { return !($const $op $value); }\n";
414         close (TESTFILE);
415
416         $res = runtest ($fnamebase, "Testing for value of constant $const",
417                         "Constant \"$const\" has not the right value.", $res);
418       }
419     } elsif (/^constant *([a-zA-Z0-9_]*) *([>=<]+) ([A-Za-z0-9_]*)/) {
420       my($const) = $1;
421       my($op) = $2;
422       my($value) = $3;
423       my($res) = $missing;
424
425       # Remember that this name is allowed.
426       push @allow, $const;
427
428       # Generate a program to test for the availability of this constant.
429       open (TESTFILE, ">$fnamebase.c");
430       print TESTFILE "$prepend";
431       print TESTFILE "#include <$h>\n";
432       print TESTFILE "__typeof__ ($const) a = $const;\n";
433       close (TESTFILE);
434
435       $res = compiletest ($fnamebase, "Testing for constant $const",
436                           "Constant \"$const\" not available.", $res, 0);
437
438       if ($value ne "") {
439         # Generate a program to test for the value of this constant.
440         open (TESTFILE, ">$fnamebase.c");
441         print TESTFILE "$prepend";
442         print TESTFILE "#include <$h>\n";
443         # Negate the value since 0 means ok
444         print TESTFILE "int main (void) { return !($const $op $value); }\n";
445         close (TESTFILE);
446
447         $res = runtest ($fnamebase, "Testing for value of constant $const",
448                         "Constant \"$const\" has not the right value.", $res);
449       }
450     } elsif (/^typed-constant *([a-zA-Z0-9_]*) *({([^}]*)}|([^ ]*)) *([A-Za-z0-9_]*)?/) {
451       my($const) = $1;
452       my($type) = "$3$4";
453       my($value) = $5;
454       my($res) = $missing;
455
456       # Remember that this name is allowed.
457       push @allow, $const;
458
459       # Generate a program to test for the availability of this constant.
460       open (TESTFILE, ">$fnamebase.c");
461       print TESTFILE "$prepend";
462       print TESTFILE "#include <$h>\n";
463       print TESTFILE "__typeof__ ($const) a = $const;\n";
464       close (TESTFILE);
465
466       $res = compiletest ($fnamebase, "Testing for constant $const",
467                           "Constant \"$const\" not available.", $res, 0);
468
469       # Test the types of the members.
470       open (TESTFILE, ">$fnamebase.c");
471       print TESTFILE "$prepend";
472       print TESTFILE "#include <$h>\n";
473       print TESTFILE "__typeof__ (($type) 0) a;\n";
474       print TESTFILE "extern __typeof__ ($const) a;\n";
475       close (TESTFILE);
476
477       compiletest ($fnamebase, "Testing for type of constant $const",
478                    "Constant \"$const\" does not have the correct type.",
479                    $res, 0);
480
481       if ($value ne "") {
482         # Generate a program to test for the value of this constant.
483         open (TESTFILE, ">$fnamebase.c");
484         print TESTFILE "$prepend";
485         print TESTFILE "#include <$h>\n";
486         print TESTFILE "int main (void) { return $const != $value; }\n";
487         close (TESTFILE);
488
489         $res = runtest ($fnamebase, "Testing for value of constant $const",
490                         "Constant \"$const\" has not the right value.", $res);
491       }
492     } elsif (/^optional-constant *([a-zA-Z0-9_]*) *([A-Za-z0-9_]*)?/) {
493       my($const) = $1;
494       my($value) = $2;
495       my($res) = $missing;
496
497       # Remember that this name is allowed.
498       push @allow, $const;
499
500       # Generate a program to test for the availability of this constant.
501       open (TESTFILE, ">$fnamebase.c");
502       print TESTFILE "$prepend";
503       print TESTFILE "#include <$h>\n";
504       print TESTFILE "__typeof__ ($const) a = $const;\n";
505       close (TESTFILE);
506
507       $res = compiletest ($fnamebase, "Testing for constant $const",
508                           "NOT PRESENT", $res, 1);
509
510       if ($value ne "" && $res == 0) {
511         # Generate a program to test for the value of this constant.
512         open (TESTFILE, ">$fnamebase.c");
513         print TESTFILE "$prepend";
514         print TESTFILE "#include <$h>\n";
515         print TESTFILE "int main (void) { return $const != $value; }\n";
516         close (TESTFILE);
517
518         $res = runtest ($fnamebase, "Testing for value of constant $const",
519                         "Constant \"$const\" has not the right value.", $res);
520       }
521     } elsif (/^constant *([a-zA-Z0-9_]*) *([A-Za-z0-9_]*)?/) {
522       my($const) = $1;
523       my($value) = $2;
524       my($res) = $missing;
525
526       # Remember that this name is allowed.
527       push @allow, $const;
528
529       # Generate a program to test for the availability of this constant.
530       open (TESTFILE, ">$fnamebase.c");
531       print TESTFILE "$prepend";
532       print TESTFILE "#include <$h>\n";
533       print TESTFILE "__typeof__ ($const) a = $const;\n";
534       close (TESTFILE);
535
536       $res = compiletest ($fnamebase, "Testing for constant $const",
537                           "Constant \"$const\" not available.", $res, 0);
538
539       if ($value ne "") {
540         # Generate a program to test for the value of this constant.
541         open (TESTFILE, ">$fnamebase.c");
542         print TESTFILE "$prepend";
543         print TESTFILE "#include <$h>\n";
544         print TESTFILE "int main (void) { return $const != $value; }\n";
545         close (TESTFILE);
546
547         $res = runtest ($fnamebase, "Testing for value of constant $const",
548                         "Constant \"$const\" has not the right value.", $res);
549       }
550     } elsif (/^symbol *([a-zA-Z0-9_]*) *([A-Za-z0-9_]*)?/) {
551       my($symbol) = $1;
552       my($value) = $2;
553       my($res) = $missing;
554
555       # Remember that this name is allowed.
556       push @allow, $symbol;
557
558       # Generate a program to test for the availability of this constant.
559       open (TESTFILE, ">$fnamebase.c");
560       print TESTFILE "$prepend";
561       print TESTFILE "#include <$h>\n";
562       print TESTFILE "void foobarbaz (void) {\n";
563       print TESTFILE "__typeof__ ($symbol) a = $symbol;\n";
564       print TESTFILE "}\n";
565       close (TESTFILE);
566
567       $res = compiletest ($fnamebase, "Testing for symbol $symbol",
568                           "Symbol \"$symbol\" not available.", $res, 0);
569
570       if ($value ne "") {
571         # Generate a program to test for the value of this constant.
572         open (TESTFILE, ">$fnamebase.c");
573         print TESTFILE "$prepend";
574         print TESTFILE "#include <$h>\n";
575         print TESTFILE "int main (void) { return $symbol != $value; }\n";
576         close (TESTFILE);
577
578         $res = runtest ($fnamebase, "Testing for value of symbol $symbol",
579                         "Symbol \"$symbol\" has not the right value.", $res);
580       }
581     } elsif (/^typed-constant *([a-zA-Z0-9_]*) *({([^}]*)}|([^ ]*)) *([A-Za-z0-9_]*)?/) {
582       my($const) = $1;
583       my($type) = "$3$4";
584       my($value) = $5;
585       my($res) = $missing;
586
587       # Remember that this name is allowed.
588       push @allow, $const;
589
590       # Generate a program to test for the availability of this constant.
591       open (TESTFILE, ">$fnamebase.c");
592       print TESTFILE "$prepend";
593       print TESTFILE "#include <$h>\n";
594       print TESTFILE "__typeof__ ($const) a = $const;\n";
595       close (TESTFILE);
596
597       $res = compiletest ($fnamebase, "Testing for constant $const",
598                           "Constant \"$const\" not available.", $res, 0);
599
600       # Test the types of the members.
601       open (TESTFILE, ">$fnamebase.c");
602       print TESTFILE "$prepend";
603       print TESTFILE "#include <$h>\n";
604       print TESTFILE "__typeof__ (($type) 0) a;\n";
605       print TESTFILE "extern __typeof__ ($const) a;\n";
606       close (TESTFILE);
607
608       compiletest ($fnamebase, "Testing for type of constant $const",
609                    "Constant \"$const\" does not have the correct type.",
610                    $res, 0);
611
612       if ($value ne "") {
613         # Generate a program to test for the value of this constant.
614         open (TESTFILE, ">$fnamebase.c");
615         print TESTFILE "$prepend";
616         print TESTFILE "#include <$h>\n";
617         print TESTFILE "int main (void) { return $const != $value; }\n";
618         close (TESTFILE);
619
620         $res = runtest ($fnamebase, "Testing for value of constant $const",
621                         "Constant \"$const\" has not the right value.", $res);
622       }
623     } elsif (/^optional-type *({([^}]*)|([a-zA-Z0-9_]*))/) {
624       my($type) = "$2$3";
625       my($maybe_opaque) = 0;
626
627       # Remember that this name is allowed.
628       if ($type =~ /^struct *(.*)/) {
629         push @allow, $1;
630       } elsif ($type =~ /^union *(.*)/) {
631         push @allow, $1;
632       } else {
633         push @allow, $type;
634         $maybe_opaque = 1;
635       }
636
637       # Remember that this name is allowed.
638       push @allow, $type;
639
640       # Generate a program to test for the availability of this constant.
641       open (TESTFILE, ">$fnamebase.c");
642       print TESTFILE "$prepend";
643       print TESTFILE "#include <$h>\n";
644       if ($maybe_opaque == 1) {
645         print TESTFILE "$type *a;\n";
646       } else {
647         print TESTFILE "$type a;\n";
648       }
649       close (TESTFILE);
650
651       compiletest ($fnamebase, "Testing for type $type",
652                    "NOT AVAILABLE", $missing, 1);
653     } elsif (/^type *({([^}]*)|([a-zA-Z0-9_]*))/) {
654       my($type) = "$2$3";
655       my($maybe_opaque) = 0;
656
657       # Remember that this name is allowed.
658       if ($type =~ /^struct *(.*)/) {
659         push @allow, $1;
660       } elsif ($type =~ /^union *(.*)/) {
661         push @allow, $1;
662       } else {
663         push @allow, $type;
664         $maybe_opaque = 1;
665       }
666
667       # Remember that this name is allowed.
668       push @allow, $type;
669
670       # Generate a program to test for the availability of this constant.
671       open (TESTFILE, ">$fnamebase.c");
672       print TESTFILE "$prepend";
673       print TESTFILE "#include <$h>\n";
674       if ($maybe_opaque == 1) {
675         print TESTFILE "$type *a;\n";
676       } else {
677         print TESTFILE "$type a;\n";
678       }
679       close (TESTFILE);
680
681       compiletest ($fnamebase, "Testing for type $type",
682                    "Type \"$type\" not available.", $missing, 0);
683     } elsif (/^optional-function *({([^}]*)}|([a-zA-Z0-9_]*)) [(][*]([a-zA-Z0-9_]*) ([(].*[)])/) {
684       my($rettype) = "$2$3";
685       my($fname) = "$4";
686       my($args) = "$5";
687       my($res) = $missing;
688
689       # Remember that this name is allowed.
690       push @allow, $fname;
691
692       # Generate a program to test for availability of this function.
693       open (TESTFILE, ">$fnamebase.c");
694       print TESTFILE "$prepend";
695       print TESTFILE "#include <$h>\n";
696       # print TESTFILE "#undef $fname\n";
697       print TESTFILE "$rettype (*(*foobarbaz) $args = $fname;\n";
698       close (TESTFILE);
699
700       $res = compiletest ($fnamebase, "Test availability of function $fname",
701                           "NOT AVAILABLE", $res, 1);
702
703       if ($res == 0 || $missing == 1) {
704         # Generate a program to test for the type of this function.
705         open (TESTFILE, ">$fnamebase.c");
706         print TESTFILE "$prepend";
707         print TESTFILE "#include <$h>\n";
708         # print TESTFILE "#undef $fname\n";
709         print TESTFILE "extern $rettype (*(*foobarbaz) $args;\n";
710         print TESTFILE "extern __typeof__ (&$fname) foobarbaz;\n";
711         close (TESTFILE);
712
713         compiletest ($fnamebase, "Test for type of function $fname",
714                      "Function \"$fname\" has incorrect type.", $res, 0);
715       }
716     } elsif (/^function *({([^}]*)}|([a-zA-Z0-9_]*)) [(][*]([a-zA-Z0-9_]*) ([(].*[)])/) {
717       my($rettype) = "$2$3";
718       my($fname) = "$4";
719       my($args) = "$5";
720       my($res) = $missing;
721
722       # Remember that this name is allowed.
723       push @allow, $fname;
724
725       # Generate a program to test for availability of this function.
726       open (TESTFILE, ">$fnamebase.c");
727       print TESTFILE "$prepend";
728       print TESTFILE "#include <$h>\n";
729       # print TESTFILE "#undef $fname\n";
730       print TESTFILE "$rettype (*(*foobarbaz) $args = $fname;\n";
731       close (TESTFILE);
732
733       $res = compiletest ($fnamebase, "Test availability of function $fname",
734                           "Function \"$fname\" is not available.", $res, 0);
735
736       # Generate a program to test for the type of this function.
737       open (TESTFILE, ">$fnamebase.c");
738       print TESTFILE "$prepend";
739       print TESTFILE "#include <$h>\n";
740       # print TESTFILE "#undef $fname\n";
741       print TESTFILE "extern $rettype (*(*foobarbaz) $args;\n";
742       print TESTFILE "extern __typeof__ (&$fname) foobarbaz;\n";
743       close (TESTFILE);
744
745       compiletest ($fnamebase, "Test for type of function $fname",
746                    "Function \"$fname\" has incorrect type.", $res, 0);
747     } elsif (/^optional-function *({([^}]*)}|([a-zA-Z0-9_]*)) ([a-zA-Z0-9_]*) ([(].*[)])/) {
748       my($rettype) = "$2$3";
749       my($fname) = "$4";
750       my($args) = "$5";
751       my($res) = $missing;
752
753       # Remember that this name is allowed.
754       push @allow, $fname;
755
756       # Generate a program to test for availability of this function.
757       open (TESTFILE, ">$fnamebase.c");
758       print TESTFILE "$prepend";
759       print TESTFILE "#include <$h>\n";
760       # print TESTFILE "#undef $fname\n";
761       print TESTFILE "$rettype (*foobarbaz) $args = $fname;\n";
762       close (TESTFILE);
763
764       $res = compiletest ($fnamebase, "Test availability of function $fname",
765                           "NOT AVAILABLE", $res, 1);
766
767       if ($res == 0 || $missing != 0) {
768         # Generate a program to test for the type of this function.
769         open (TESTFILE, ">$fnamebase.c");
770         print TESTFILE "$prepend";
771         print TESTFILE "#include <$h>\n";
772         # print TESTFILE "#undef $fname\n";
773         print TESTFILE "extern $rettype (*foobarbaz) $args;\n";
774         print TESTFILE "extern __typeof__ (&$fname) foobarbaz;\n";
775         close (TESTFILE);
776
777         compiletest ($fnamebase, "Test for type of function $fname",
778                      "Function \"$fname\" has incorrect type.", $res, 0);
779       }
780     } elsif (/^function *({([^}]*)}|([a-zA-Z0-9_]*)) ([a-zA-Z0-9_]*) ([(].*[)])/) {
781       my($rettype) = "$2$3";
782       my($fname) = "$4";
783       my($args) = "$5";
784       my($res) = $missing;
785
786       # Remember that this name is allowed.
787       push @allow, $fname;
788
789       # Generate a program to test for availability of this function.
790       open (TESTFILE, ">$fnamebase.c");
791       print TESTFILE "$prepend";
792       print TESTFILE "#include <$h>\n";
793       # print TESTFILE "#undef $fname\n";
794       print TESTFILE "$rettype (*foobarbaz) $args = $fname;\n";
795       close (TESTFILE);
796
797       $res = compiletest ($fnamebase, "Test availability of function $fname",
798                           "Function \"$fname\" is not available.", $res, 0);
799
800       # Generate a program to test for the type of this function.
801       open (TESTFILE, ">$fnamebase.c");
802       print TESTFILE "$prepend";
803       print TESTFILE "#include <$h>\n";
804       # print TESTFILE "#undef $fname\n";
805       print TESTFILE "extern $rettype (*foobarbaz) $args;\n";
806       print TESTFILE "extern __typeof__ (&$fname) foobarbaz;\n";
807       close (TESTFILE);
808
809       compiletest ($fnamebase, "Test for type of function $fname",
810                    "Function \"$fname\" has incorrect type.", $res, 0);
811     } elsif (/^variable *({([^}]*)}|([a-zA-Z0-9_]*)) ([a-zA-Z0-9_]*) *(.*)/) {
812       my($type) = "$2$3";
813       my($vname) = "$4";
814       my($rest) = "$5";
815       my($res) = $missing;
816
817       # Remember that this name is allowed.
818       push @allow, $vname;
819
820       # Generate a program to test for availability of this function.
821       open (TESTFILE, ">$fnamebase.c");
822       print TESTFILE "$prepend";
823       print TESTFILE "#include <$h>\n";
824       # print TESTFILE "#undef $fname\n";
825       print TESTFILE "typedef $type xyzzy$rest;\n";
826       print TESTFILE "$xyzzy *foobarbaz = &$vname;\n";
827       close (TESTFILE);
828
829       $res = compiletest ($fnamebase, "Test availability of variable $vname",
830                           "Variable \"$vname\" is not available.", $res, 0);
831
832       # Generate a program to test for the type of this function.
833       open (TESTFILE, ">$fnamebase.c");
834       print TESTFILE "$prepend";
835       print TESTFILE "#include <$h>\n";
836       # print TESTFILE "#undef $fname\n";
837       print TESTFILE "extern $type $vname$rest;\n";
838       close (TESTFILE);
839
840       compiletest ($fnamebase, "Test for type of variable $fname",
841                    "Variable \"$vname\" has incorrect type.", $res, 0);
842     } elsif (/^macro-function *({([^}]*)}|([a-zA-Z0-9_]*)) ([a-zA-Z0-9_]*) ([(].*[)])/) {
843       my($rettype) = "$2$3";
844       my($fname) = "$4";
845       my($args) = "$5";
846       my($res) = $missing;
847
848       # Remember that this name is allowed.
849       push @allow, $fname;
850
851       # Generate a program to test for availability of this function.
852       open (TESTFILE, ">$fnamebase.c");
853       print TESTFILE "$prepend";
854       print TESTFILE "#include <$h>\n";
855       print TESTFILE "#ifndef $fname\n";
856       print TESTFILE "$rettype (*foobarbaz) $args = $fname;\n";
857       print TESTFILE "#endif\n";
858       close (TESTFILE);
859
860       $res = compiletest ($fnamebase, "Test availability of function $fname",
861                           "Function \"$fname\" is not available.", $res, 0);
862
863       # Generate a program to test for the type of this function.
864       open (TESTFILE, ">$fnamebase.c");
865       print TESTFILE "$prepend";
866       print TESTFILE "#include <$h>\n";
867       print TESTFILE "#ifndef $fname\n";
868       print TESTFILE "extern $rettype (*foobarbaz) $args;\n";
869       print TESTFILE "extern __typeof__ (&$fname) foobarbaz;\n";
870       print TESTFILE "#endif\n";
871       close (TESTFILE);
872
873       compiletest ($fnamebase, "Test for type of function $fname",
874                    "Function \"$fname\" has incorrect type.", $res, 0);
875     } elsif (/^macro-str *([^    ]*) *(\".*\")/) {
876       # The above regex doesn't handle a \" in a string.
877       my($macro) = "$1";
878       my($string) = "$2";
879       my($res) = $missing;
880
881       # Remember that this name is allowed.
882       push @allow, $macro;
883
884       # Generate a program to test for availability of this macro.
885       open (TESTFILE, ">$fnamebase.c");
886       print TESTFILE "$prepend";
887       print TESTFILE "#include <$h>\n";
888       print TESTFILE "#ifndef $macro\n";
889       print TESTFILE "# error \"Macro $macro not defined\"\n";
890       print TESTFILE "#endif\n";
891       close (TESTFILE);
892
893       compiletest ($fnamebase, "Test availability of macro $macro",
894                    "Macro \"$macro\" is not available.", $missing, 0);
895
896       # Generate a program to test for the value of this macro.
897       open (TESTFILE, ">$fnamebase.c");
898       print TESTFILE "$prepend";
899       print TESTFILE "#include <$h>\n";
900       # We can't include <string.h> here.
901       print TESTFILE "extern int (strcmp)(const char *, const char *);\n";
902       print TESTFILE "int main (void) { return (strcmp) ($macro, $string) != 0;}\n";
903       close (TESTFILE);
904
905       $res = runtest ($fnamebase, "Testing for value of macro $macro",
906                       "Macro \"$macro\" has not the right value.", $res);
907     } elsif (/^optional-macro *([^      ]*)/) {
908       my($macro) = "$1";
909
910       # Remember that this name is allowed.
911       push @allow, $macro;
912
913       # Generate a program to test for availability of this macro.
914       open (TESTFILE, ">$fnamebase.c");
915       print TESTFILE "$prepend";
916       print TESTFILE "#include <$h>\n";
917       print TESTFILE "#ifndef $macro\n";
918       print TESTFILE "# error \"Macro $macro not defined\"\n";
919       print TESTFILE "#endif\n";
920       close (TESTFILE);
921
922       compiletest ($fnamebase, "Test availability of macro $macro",
923                    "NOT PRESENT", $missing, 1);
924     } elsif (/^macro *([a-zA-Z0-9_]*) *([>=<]+) ([A-Za-z0-9_]*)/) {
925       my($macro) = "$1";
926       my($op) = $2;
927       my($value) = $3;
928       my($res) = $missing;
929
930       # Remember that this name is allowed.
931       push @allow, $macro;
932
933       # Generate a program to test for availability of this macro.
934       open (TESTFILE, ">$fnamebase.c");
935       print TESTFILE "$prepend";
936       print TESTFILE "#include <$h>\n";
937       print TESTFILE "#ifndef $macro\n";
938       print TESTFILE "# error \"Macro $macro not defined\"\n";
939       print TESTFILE "#endif\n";
940       close (TESTFILE);
941
942       $res = compiletest ($fnamebase, "Test availability of macro $macro",
943                           "Macro \"$macro\" is not available.", $res, 0);
944
945       if ($value ne "") {
946         # Generate a program to test for the value of this constant.
947         open (TESTFILE, ">$fnamebase.c");
948         print TESTFILE "$prepend";
949         print TESTFILE "#include <$h>\n";
950         # Negate the value since 0 means ok
951         print TESTFILE "int main (void) { return !($macro $op $value); }\n";
952         close (TESTFILE);
953
954         $res = runtest ($fnamebase, "Testing for value of constant $macro",
955                         "Macro \"$macro\" has not the right value.", $res);
956       }
957     } elsif (/^macro *([^       ]*)/) {
958       my($macro) = "$1";
959
960       # Remember that this name is allowed.
961       push @allow, $macro;
962
963       # Generate a program to test for availability of this macro.
964       open (TESTFILE, ">$fnamebase.c");
965       print TESTFILE "$prepend";
966       print TESTFILE "#include <$h>\n";
967       print TESTFILE "#ifndef $macro\n";
968       print TESTFILE "# error \"Macro $macro not defined\"\n";
969       print TESTFILE "#endif\n";
970       close (TESTFILE);
971
972       compiletest ($fnamebase, "Test availability of macro $macro",
973                    "Macro \"$macro\" is not available.", $missing, 0);
974     } elsif (/^allow-header *(.*)/) {
975       my($pattern) = $1;
976       if ($seenheader{$pattern} != 1) {
977         push @allowheader, $pattern;
978         $seenheader{$pattern} = 1;
979       }
980       next control;
981     } elsif (/^allow *(.*)/) {
982       my($pattern) = $1;
983       push @allow, $pattern;
984       next control;
985     } else {
986       # printf ("line is `%s'\n", $_);
987       next control;
988     }
989
990     printf ("\n");
991   }
992   close (CONTROL);
993
994   # Read the data files for the header files which are allowed to be included.
995   while ($#allowheader >= 0) {
996     my($ah) = pop @allowheader;
997
998     open (ALLOW, "$CC -E -D$dialect - < data/$ah-data |");
999     acontrol: while (<ALLOW>) {
1000       next acontrol if (/^#/);
1001       next acontrol if (/^[     ]*$/);
1002
1003       if (/^element *({([^}]*)}|([^ ]*)) *({([^}]*)}|([^ ]*)) *([A-Za-z0-9_]*) *(.*)/) {
1004         push @allow, $7;
1005       } elsif (/^constant *([a-zA-Z0-9_]*) *([A-Za-z0-9_]*)?/) {
1006         push @allow, $1;
1007       } elsif (/^typed-constant *([a-zA-Z0-9_]*) *({([^}]*)}|([^ ]*)) *([A-Za-z0-9_]*)?/) {
1008         push @allow, 1;
1009       } elsif (/^type *({([^}]*)|([a-zA-Z0-9_]*))/) {
1010         my($type) = "$2$3";
1011
1012         # Remember that this name is allowed.
1013         if ($type =~ /^struct *(.*)/) {
1014           push @allow, $1;
1015         } elsif ($type =~ /^union *(.*)/) {
1016           push @allow, $1;
1017         } else {
1018           push @allow, $type;
1019         }
1020       } elsif (/^function *({([^}]*)}|([a-zA-Z0-9_]*)) [(][*]([a-zA-Z0-9_]*) ([(].*[)])/) {
1021         push @allow, $4;
1022       } elsif (/^function *({([^}]*)}|([a-zA-Z0-9_]*)) ([a-zA-Z0-9_]*) ([(].*[)])/) {
1023         push @allow, $4;
1024       } elsif (/^variable *({([^}]*)}|([a-zA-Z0-9_]*)) ([a-zA-Z0-9_]*)/) {
1025         push @allow, $4;
1026       } elsif (/^macro-function *({([^}]*)}|([a-zA-Z0-9_]*)) ([a-zA-Z0-9_]*) ([(].*[)])/) {
1027         push @allow, $4;
1028       } elsif (/^macro *([^     ]*)/) {
1029         push @allow, $1;
1030       } elsif (/^allow-header *(.*)/) {
1031         if ($seenheader{$1} != 1) {
1032           push @allowheader, $1;
1033           $seenheader{$1} = 1;
1034         }
1035       } elsif (/^allow *(.*)/) {
1036         push @allow, $1;
1037       }
1038     }
1039     close (ALLOW);
1040   }
1041
1042   # Now check the namespace.
1043   printf ("  Checking the namespace of \"%s\"... ", $h);
1044   if ($missing) {
1045     ++$skipped;
1046     printf ("SKIP\n");
1047   } else {
1048     checknamespace ($h, $fnamebase, @allow);
1049   }
1050
1051   printf ("\n\n");
1052 }
1053
1054 printf "-" x 76 . "\n";
1055 printf ("  Total number of tests   : %4d\n", $total);
1056
1057 printf ("  Number of known failures: %4d (", $known);
1058 $percent = ($known * 100) / $total;
1059 if ($known > 0 && $percent < 1.0) {
1060   printf (" <1%%)\n");
1061 } else {
1062   printf ("%3d%%)\n", $percent);
1063 }
1064
1065 printf ("  Number of failed tests  : %4d (", $errors);
1066 $percent = ($errors * 100) / $total;
1067 if ($errors > 0 && $percent < 1.0) {
1068   printf (" <1%%)\n");
1069 } else {
1070   printf ("%3d%%)\n", $percent);
1071 }
1072
1073 printf ("  Number of skipped tests : %4d (", $skipped);
1074 $percent = ($skipped * 100) / $total;
1075 if ($skipped > 0 && $percent < 1.0) {
1076   printf (" <1%%)\n");
1077 } else {
1078   printf ("%3d%%)\n", $percent);
1079 }
1080
1081 exit $errors != 0;