summaryrefslogtreecommitdiffstats
path: root/src/tests/asn.1/debug.h
blob: d0f05de1d5811bbe59e424b8614fbc80aea91876 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef __DEBUG_H__
#define __DEBUG_H__

/*
   assert utility macro for test programs:
   If the predicate (pred) is true, then
   OK: <message> is printed.  Otherwise,
   ERROR: <message> is printed.

   message should be a printf format string.
*/

#include <stdio.h>

#define assert(pred,message)\
  if(pred) printf("OK: ");\
  else { printf("ERROR: "); error_count++; }\
  printf(message);

#endif