mirror of
https://github.com/X11Libre/xserver.git
synced 2026-04-14 17:18:09 +00:00
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:
@@ -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 */
|
||||
|
||||
Reference in New Issue
Block a user