mirror of
https://gitlab.uni-freiburg.de/opensourcevdi/spice
synced 2025-12-27 07:29:32 +00:00
updates taken from spice vga mode updates, i.e. non cacheable, glz compressed (depends on whatever settings you apply to the server) opaque draw operations. + completed the SpiceCoreInterface implementation (timers) v1->v2: removed test_util.c (Hans) replaced mallocz with calloc (Hans)
13 lines
296 B
C
13 lines
296 B
C
#ifndef __TEST_UTIL_H__
|
|
#define __TEST_UTIL_H__
|
|
|
|
#define TRUE 1
|
|
#define FALSE 0
|
|
|
|
#define ASSERT(x) if (!(x)) { \
|
|
printf("%s: ASSERT %s failed\n", __FUNCTION__, #x); \
|
|
abort(); \
|
|
}
|
|
|
|
#endif // __TEST_UTIL_H__
|