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