diff options
author | Ulrich Drepper <drepper@redhat.com> | 2010-03-25 19:45:20 -0700 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2010-03-25 19:45:20 -0700 |
commit | 70c90289ff7e2f1ca976618bcf342d9c65c746fc (patch) | |
tree | b137a73907e3abed69bafe89483de0af3ce2b814 /malloc/tst-mallocstate.c | |
parent | 89a4419cc384c090b1eabe610647aa4e14436a3f (diff) | |
parent | 34b514dff6acf8f1cac0afefd24049e025fd62ea (diff) | |
download | glibc-70c90289ff7e2f1ca976618bcf342d9c65c746fc.tar.gz glibc-70c90289ff7e2f1ca976618bcf342d9c65c746fc.tar.xz glibc-70c90289ff7e2f1ca976618bcf342d9c65c746fc.zip |
Merge branch 'master' of ssh://sources.redhat.com/git/glibc
Conflicts: ChangeLog
Diffstat (limited to 'malloc/tst-mallocstate.c')
-rw-r--r-- | malloc/tst-mallocstate.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/malloc/tst-mallocstate.c b/malloc/tst-mallocstate.c index 97a10586d3..2a1fd469ab 100644 --- a/malloc/tst-mallocstate.c +++ b/malloc/tst-mallocstate.c @@ -51,6 +51,7 @@ main (void) for (i=0; i<100; ++i) { +printf("round %li\n", i); save_state = malloc_get_state (); if (save_state == NULL) { @@ -64,13 +65,18 @@ main (void) merror ("realloc (i*4) failed."); free (save_state); } +puts("done"); p1 = realloc (p1, 40); +puts("after realloc"); free (p2); +puts("after free 1"); p2 = malloc (10); +puts("after malloc"); if (p2 == NULL) merror ("malloc (10) failed."); free (p1); +puts("after free 2"); return errors != 0; } |