get-rusage-as, get-rusage-data tests: Avoid test failure with gcc-4.7.
authorBruno Haible <bruno@clisp.org>
Sat, 4 Feb 2012 11:59:00 +0000 (12:59 +0100)
committerBruno Haible <bruno@clisp.org>
Sat, 4 Feb 2012 11:59:00 +0000 (12:59 +0100)
* tests/test-get-rusage-as.c (main): Assign the malloc() results to
global variables.
* tests/test-get-rusage-data.c (main): Likewise.
Reported by Jim Meyering.

ChangeLog
tests/test-get-rusage-as.c
tests/test-get-rusage-data.c

index 7fde29e..11b6e70 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,13 @@
 2012-02-04  Bruno Haible  <bruno@clisp.org>
 
+       get-rusage-as, get-rusage-data tests: Avoid test failure with gcc-4.7.
+       * tests/test-get-rusage-as.c (main): Assign the malloc() results to
+       global variables.
+       * tests/test-get-rusage-data.c (main): Likewise.
+       Reported by Jim Meyering.
+
+2012-02-04  Bruno Haible  <bruno@clisp.org>
+
        stdioext: Fix last commit.
        * lib/fwritable.c [EPLAN9]: Include <fcntl.h>.
 
index 8c0a80f..ced8ede 100644 (file)
@@ -23,6 +23,9 @@
 
 #include "macros.h"
 
+void *memchunk1;
+void *memchunk2;
+
 int
 main ()
 {
@@ -30,11 +33,11 @@ main ()
 
   value1 = get_rusage_as ();
 
-  malloc (0x88);
+  memchunk1 = malloc (0x88);
 
   value2 = get_rusage_as ();
 
-  malloc (0x281237);
+  memchunk2 = malloc (0x281237);
 
   value3 = get_rusage_as ();
 
index 85d9d31..0640052 100644 (file)
@@ -23,6 +23,9 @@
 
 #include "macros.h"
 
+void *memchunk1;
+void *memchunk2;
+
 int
 main ()
 {
@@ -30,11 +33,11 @@ main ()
 
   value1 = get_rusage_data ();
 
-  malloc (0x88);
+  memchunk1 = malloc (0x88);
 
   value2 = get_rusage_data ();
 
-  malloc (0x281237);
+  memchunk2 = malloc (0x281237);
 
   value3 = get_rusage_data ();