]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
(main): Run tests for different alignments.
authorUlrich Drepper <drepper@redhat.com>
Tue, 24 Oct 2000 08:30:36 +0000 (08:30 +0000)
committerUlrich Drepper <drepper@redhat.com>
Tue, 24 Oct 2000 08:30:36 +0000 (08:30 +0000)
malloc/tst-obstack.c

index bd00a0ab7b2ed5e98a6de56f2a2f387e066c9911..cd19431bb908478fd9bb9c23dda1c989fe9c8e50 100644 (file)
@@ -28,27 +28,37 @@ verbose_free (void *buf)
 int
 main (void)
 {
-  struct obstack obs;
-  int i;
   int result = 0;
+  int align = 2;
 
-  obstack_init (&obs);
-  obstack_alignment_mask (&obs) = ALIGN_MASK;
-  /* finish an empty object to take alignment into account */
-  obstack_finish (&obs);
-
-  /* let's allocate some objects and print their addresses */
-  for (i = 15; i > 0; --i)
+  while (align <= 64)
     {
-      void *obj = obstack_alloc (&obs, OBJECT_SIZE);
+      struct obstack obs;
+      int i;
+      int align_mask = align - 1;
+
+      printf ("\n Alignment mask: %d\n", align_mask);
+
+      obstack_init (&obs);
+      obstack_alignment_mask (&obs) = align_mask;
+      /* finish an empty object to take alignment into account */
+      obstack_finish (&obs);
+
+      /* let's allocate some objects and print their addresses */
+      for (i = 15; i > 0; --i)
+       {
+         void *obj = obstack_alloc (&obs, OBJECT_SIZE);
+
+         printf ("obstack_alloc (%u) => %p \t%s\n", OBJECT_SIZE, obj,
+                 ((uintptr_t) obj & align_mask) ? "(not aligned)" : "");
+         result |= ((uintptr_t) obj & align_mask) != 0;
+       }
 
-      printf ("obstack_alloc (%u) => %p \t%s\n", OBJECT_SIZE, obj,
-             ((uintptr_t) obj & ALIGN_MASK) ? "(not aligned)" : "");
-      result |= ((uintptr_t) obj & ALIGN_MASK) != 0;
-  }
+      /* clean up */
+      obstack_free (&obs, 0);
 
-  /* clean up */
-  obstack_free (&obs, 0);
+      align <<= 1;
+    }
 
   return result;
 }