VS2008 project files.
[xiph/unicode.git] / theora-exp / tests / tests.h
blobcf2ca50664a7d5cf3ab9adbedc546273624e8f7d
1 #include "config.h"
3 #include <stdio.h>
4 #include <stdlib.h>
6 #define INFO(str) \
7 { printf ("---- %s ...\n", (str)); }
9 #define WARN(str) \
10 { printf ("%s:%d: warning: %s\n", __FILE__, __LINE__, (str)); }
12 #define FAIL(str) \
13 { printf ("%s:%d: %s\n", __FILE__, __LINE__, (str)); exit(1); }
15 #undef MIN
16 #define MIN(a,b) ((a)<(b)?(a):(b))