* 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>
+
+ 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.
#include "macros.h"
+void *memchunk1;
+void *memchunk2;
+
int
main ()
{
value1 = get_rusage_as ();
- malloc (0x88);
+ memchunk1 = malloc (0x88);
value2 = get_rusage_as ();
- malloc (0x281237);
+ memchunk2 = malloc (0x281237);
value3 = get_rusage_as ();
#include "macros.h"
+void *memchunk1;
+void *memchunk2;
+
int
main ()
{
value1 = get_rusage_data ();
- malloc (0x88);
+ memchunk1 = malloc (0x88);
value2 = get_rusage_data ();
- malloc (0x281237);
+ memchunk2 = malloc (0x281237);
value3 = get_rusage_data ();