summaryrefslogtreecommitdiff
path: root/conform/conformtest.pl
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1999-08-26 06:29:56 +0000
committerUlrich Drepper <drepper@redhat.com>1999-08-26 06:29:56 +0000
commit77faa3541634894476d904cd517e81f57cfa4fe2 (patch)
tree9aacdaf0acb446867ae056ec3ae81ccb08b96b46 /conform/conformtest.pl
parentb395c02de77c87e8d4df165e623ba31bf54579cc (diff)
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.
Diffstat (limited to 'conform/conformtest.pl')
-rw-r--r--conform/conformtest.pl13
1 files changed, 13 insertions, 0 deletions
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 <sys/types.h>\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";