diff options
author | Max Kellermann <max@duempel.org> | 2012-03-21 19:08:32 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2012-03-21 19:08:32 +0100 |
commit | 62218fe59d14cca29e15e8c687a568c850cb6003 (patch) | |
tree | ca58bd37cf6cf7181193e58a1496f2550f7d35bd /test/test_glib_compat.h | |
parent | 95d9bb6dfc1b90135c66b19d83eb17436908e3e8 (diff) | |
download | mpd-62218fe59d14cca29e15e8c687a568c850cb6003.tar.gz mpd-62218fe59d14cca29e15e8c687a568c850cb6003.tar.xz mpd-62218fe59d14cca29e15e8c687a568c850cb6003.zip |
test: add unit test for util/byte_reverse.c
Diffstat (limited to 'test/test_glib_compat.h')
-rw-r--r-- | test/test_glib_compat.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/test_glib_compat.h b/test/test_glib_compat.h index 1d54ec89a..2e4ab123c 100644 --- a/test/test_glib_compat.h +++ b/test/test_glib_compat.h @@ -28,7 +28,10 @@ #if !GLIB_CHECK_VERSION(2,16,0) +#include <string.h> + #define g_assert_cmpint(n1, cmp, n2) g_assert((n1) cmp (n2)) +#define g_assert_cmpstr(a, cmp, b) g_assert(strcmp(a, b) cmp 0) static void (*test_functions[256])(void); static unsigned num_test_functions; |