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