test: remove glib dependency

The few features from the glib test suite we used can be replaced with
assert and printf. This patch is a simple replacement for these two
    g_assert → assert
    g_test_message → printf

g_test_init is removed and so is g_test_bug_base. g_test_run replaced with a
simple return 0.

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Acked-by: Tiago Vignatti <tiago.vignatti@nokia.com>
Acked-by: Gaetan Nadon <memsize@videotron.ca>
This commit is contained in:
Peter Hutterer
2011-04-15 14:51:06 +10:00
parent 071a6ac4d0
commit 196d679bed
19 changed files with 578 additions and 640 deletions

View File

@@ -29,6 +29,7 @@
#include "windowstr.h"
#include "scrnintstr.h"
#include "exevents.h"
#include <assert.h>
#ifndef PROTOCOL_COMMON_H
#define PROTOCOL_COMMON_H
@@ -38,11 +39,11 @@ extern int BadDevice;
/* Check default values in a reply */
#define reply_check_defaults(rep, len, type) \
{ \
g_assert((len) >= sz_x##type##Reply); \
g_assert((rep)->repType == X_Reply); \
g_assert((rep)->RepType == X_##type); \
g_assert((rep)->sequenceNumber == CLIENT_SEQUENCE); \
g_assert((rep)->length >= (sz_x##type##Reply - 32)/4); \
assert((len) >= sz_x##type##Reply); \
assert((rep)->repType == X_Reply); \
assert((rep)->RepType == X_##type); \
assert((rep)->sequenceNumber == CLIENT_SEQUENCE); \
assert((rep)->length >= (sz_x##type##Reply - 32)/4); \
}
/* initialise default values for request */