diff options
author | Tomi Valkeinen <tomi.valkeinen@iki.fi> | 2015-10-01 21:49:43 +0300 |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@iki.fi> | 2015-10-01 21:49:43 +0300 |
commit | c77756c48d6f38c8b40a39fd53f610c296530adf (patch) | |
tree | a288ab1b0c1ac6a3d1ee2694089a7d232819afa6 | |
parent | 093b77fc295d1bc4694b32fed95da0fab78c4097 (diff) |
move test.h to libkmstest
-rw-r--r-- | libkmstest/test.h (renamed from tests/test.h) | 6 | ||||
-rw-r--r-- | tests/db.cpp | 3 | ||||
-rw-r--r-- | tests/testpat.cpp | 1 |
3 files changed, 6 insertions, 4 deletions
diff --git a/tests/test.h b/libkmstest/test.h index 090ff38..0913e79 100644 --- a/tests/test.h +++ b/libkmstest/test.h @@ -1,5 +1,9 @@ #pragma once +#include "color.h" +#include "conv.h" +#include "testpat.h" + #define unlikely(x) __builtin_expect(!!(x), 0) static void ASSERT_FAIL(const char *cond, const char *file, @@ -13,3 +17,5 @@ static void ASSERT_FAIL(const char *cond, const char *file, } #define ASSERT(x) if (unlikely(!(x))) { ASSERT_FAIL( __STRING(x), __FILE__, __LINE__, __PRETTY_FUNCTION__); } + +#define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0])) diff --git a/tests/db.cpp b/tests/db.cpp index 9b7c973..d70f917 100644 --- a/tests/db.cpp +++ b/tests/db.cpp @@ -6,7 +6,6 @@ #include <drm_fourcc.h> #include "kms++.h" -#include "color.h" #include "test.h" @@ -17,8 +16,6 @@ static void draw_color_bar(Framebuffer& buf, int old_xpos, int xpos, int width); static void main_loop(Card& card); -#define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0])) - class OutputFlipHandler { public: diff --git a/tests/testpat.cpp b/tests/testpat.cpp index 419df5d..eaf1091 100644 --- a/tests/testpat.cpp +++ b/tests/testpat.cpp @@ -2,7 +2,6 @@ #include <algorithm> #include "kms++.h" -#include "testpat.h" #include "test.h" |