Changeset 1b3e854 in mainline for uspace/app/tester/tester.h


Ignore:
Timestamp:
2011-05-21T14:29:50Z (13 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
faeb7cc
Parents:
955f2a5
Message:

add library function for explicit heap structure consistency check
use extensive heap consistency checks in the heap allocator tests

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/tester/tester.h

    r955f2a5 r1b3e854  
    3838#include <sys/types.h>
    3939#include <bool.h>
     40#include <stacktrace.h>
    4041
    4142#define IPC_TEST_SERVICE  10240
     
    5960                if (!test_quiet) { \
    6061                        fprintf(stderr, (format), ##__VA_ARGS__); \
     62                } \
     63        } while (0)
     64
     65#define TSTACKTRACE() \
     66        do { \
     67                if (!test_quiet) { \
     68                        stacktrace_print(); \
    6169                } \
    6270        } while (0)
Note: See TracChangeset for help on using the changeset viewer.