]> sourceware.org Git - glibc.git/commitdiff
Update.
authorUlrich Drepper <drepper@redhat.com>
Sat, 27 Jan 2001 19:45:21 +0000 (19:45 +0000)
committerUlrich Drepper <drepper@redhat.com>
Sat, 27 Jan 2001 19:45:21 +0000 (19:45 +0000)
* conform/data/sys/shm.h-data: SHMLBA is not required to by a constant.
* conform/conformtest.pl: Implement handling of symbol.

ChangeLog
conform/conformtest.pl
conform/data/sys/shm.h-data

index 6e2e5c80ccc8c3443e5fc6fc1809176e02899f20..7b1c32ac3f399ab289d1a1675f5f5f59ea11413c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2001-01-27  Ulrich Drepper  <drepper@redhat.com>
 
+       * conform/data/sys/shm.h-data: SHMLBA is not required to by a constant.
+       * conform/conformtest.pl: Implement handling of symbol.
+
        * signal/signal.h: Fix handling of __need_* symbols.
        * misc/sys/select.c: Define fd_set here.  Remove __fd_set.  Define
        fd_mask only if __USE_MISC.  Declare pselect for __USE_XOPEN2K.
index b0220f59915478a11736e3efaeef773d1f92417a..f7c5368c3de395627e7e16102b3414f2cf71720e 100644 (file)
@@ -546,6 +546,37 @@ while ($#headers >= 0) {
        $res = runtest ($fnamebase, "Testing for value of constant $const",
                        "Constant \"$const\" has not the right value.", $res);
       }
+    } elsif (/^symbol *([a-zA-Z0-9_]*) *([A-Za-z0-9_]*)?/) {
+      my($symbol) = $1;
+      my($value) = $2;
+      my($res) = $missing;
+
+      # Remember that this name is allowed.
+      push @allow, $symbol;
+
+      # 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 "void foobarbaz (void) {\n";
+      print TESTFILE "__typeof__ ($symbol) a = $symbol;\n";
+      print TESTFILE "}\n";
+      close (TESTFILE);
+
+      $res = compiletest ($fnamebase, "Testing for symbol $symbol",
+                         "Symbol \"$symbol\" not available.", $res, 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 $symbol != $value; }\n";
+       close (TESTFILE);
+
+       $res = runtest ($fnamebase, "Testing for value of symbol $symbol",
+                       "Symbol \"$symbol\" has not the right value.", $res);
+      }
     } elsif (/^typed-constant *([a-zA-Z0-9_]*) *({([^}]*)}|([^ ]*)) *([A-Za-z0-9_]*)?/) {
       my($const) = $1;
       my($type) = "$3$4";
index a08d6f559621f41b8b0ef53a6bb18982ff456c69..cac01634061fa9964c17433413ee2e18fe10cfa4 100644 (file)
@@ -1,5 +1,5 @@
 constant SHM_RDONLY
-constant SHMLBA
+symbol SHMLBA
 constant SHM_RND
 
 type shmatt_t
This page took 0.042398 seconds and 5 git commands to generate.