Changeset 38c773e7 in mainline for uspace/app/tester/mm/malloc3.c


Ignore:
Timestamp:
2011-05-17T16:07:31Z (14 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
e6eee2b
Parents:
013a5d7
Message:

make really sure the test does not trip over and fell on its own running chain saw

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/tester/mm/malloc3.c

    r013a5d7 r38c773e7  
    236236                                        mem_area_t *area = map_area(AREA_SIZE);
    237237                                        RETURN_IF_ERROR;
    238                                        
    239                                         TPRINTF("*");
    240                                         fill_area(area);
     238                                        if (area != NULL) {
     239                                                TPRINTF("*");
     240                                                fill_area(area);
     241                                        } else
     242                                                TPRINTF("F(*)");
    241243                                }
    242244                        }
Note: See TracChangeset for help on using the changeset viewer.