From 77faa3541634894476d904cd517e81f57cfa4fe2 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Thu, 26 Aug 1999 06:29:56 +0000 Subject: Update. * sysdeps/i386/fpu/bits/mathinline.h (__finite): Mark constant as unsigned to avoid warning. [PR libc/1271]. * conform/conformtest.pl: Allow testing regex.h which requires sys/types.h being included. --- conform/conformtest.pl | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'conform/conformtest.pl') diff --git a/conform/conformtest.pl b/conform/conformtest.pl index 8a4947443a..41613c67e5 100644 --- a/conform/conformtest.pl +++ b/conform/conformtest.pl @@ -18,6 +18,9 @@ $CFLAGS = "-I. '-D__attribute__(x)=' -D_XOPEN_SOURCE=500"; 'short', 'signed', 'sizeof', 'static', 'struct', 'switch', 'typedef', 'union', 'unsigned', 'void', 'volatile', 'while'); +# Some headers need a bit more attention. +$mustprepend{'regex.h'} = "#include \n"; + # Make an hash table from this information. while ($#keywords) { $iskeyword{pop (@keywords)} = 1; @@ -228,12 +231,14 @@ while ($#headers >= 0) { my($fnamebase) = "$tmpdir/$h-test"; my($missing); my(@allow) = (); + my($prepend) = $mustprepend{$h}; printf ("Testing <$h>\n"); printf ("----------" . "-" x length ($h) . "\n"); # Generate a program to test for the availability of this header. open (TESTFILE, ">$fnamebase.c"); + print TESTFILE "$prepend"; print TESTFILE "#include <$h>\n"; close (TESTFILE); @@ -260,6 +265,7 @@ while ($#headers >= 0) { # Generate a program to test for the availability of this member. open (TESTFILE, ">$fnamebase.c"); + print TESTFILE "$prepend"; print TESTFILE "#include <$h>\n"; print TESTFILE "$struct a;\n"; print TESTFILE "$struct b;\n"; @@ -275,6 +281,7 @@ while ($#headers >= 0) { # Test the types of the members. open (TESTFILE, ">$fnamebase.c"); + print TESTFILE "$prepend"; print TESTFILE "#include <$h>\n"; print TESTFILE "$struct a;\n"; print TESTFILE "extern $type b$rest;\n"; @@ -293,6 +300,7 @@ while ($#headers >= 0) { # Generate a program to test for the availability of this constant. open (TESTFILE, ">$fnamebase.c"); + print TESTFILE "$prepend"; print TESTFILE "#include <$h>\n"; print TESTFILE "__typeof__ ($const) a = $const;\n"; close (TESTFILE); @@ -303,6 +311,7 @@ while ($#headers >= 0) { if ($value ne "") { # Generate a program to test for the value of this constant. open (TESTFILE, ">$fnamebase.c"); + print TESTFILE "$prepend"; print TESTFILE "#include <$h>\n"; print TESTFILE "int main (void) { return $const != $value; }\n"; close (TESTFILE); @@ -327,6 +336,7 @@ while ($#headers >= 0) { # Generate a program to test for the availability of this constant. open (TESTFILE, ">$fnamebase.c"); + print TESTFILE "$prepend"; print TESTFILE "#include <$h>\n"; print TESTFILE "$type *a;\n"; close (TESTFILE); @@ -344,6 +354,7 @@ while ($#headers >= 0) { # Generate a program to test for availability of this function. open (TESTFILE, ">$fnamebase.c"); + print TESTFILE "$prepend"; print TESTFILE "#include <$h>\n"; # print TESTFILE "#undef $fname\n"; print TESTFILE "$rettype (*foobarbaz) $args = $fname;\n"; @@ -354,6 +365,7 @@ while ($#headers >= 0) { # Generate a program to test for the type of this function. open (TESTFILE, ">$fnamebase.c"); + print TESTFILE "$prepend"; print TESTFILE "#include <$h>\n"; # print TESTFILE "#undef $fname\n"; print TESTFILE "extern $rettype (*foobarbaz) $args;\n"; @@ -370,6 +382,7 @@ while ($#headers >= 0) { # Generate a program to test for availability of this macro. open (TESTFILE, ">$fnamebase.c"); + print TESTFILE "$prepend"; print TESTFILE "#include <$h>\n"; print TESTFILE "#ifndef $macro\n"; print TESTFILE "# error \"Macro $macro not defined\"\n"; -- cgit v1.2.3