![Kristian Høgsberg](/assets/img/avatar_default.png)
The idea here is to make weston load test cases as a module and then run test cases from within weston.
26 lines
588 B
C
26 lines
588 B
C
#ifndef _TEST_RUNNER_H_
|
|
#define _TEST_RUNNER_H_
|
|
|
|
#ifdef NDEBUG
|
|
#error "Tests must not be built with NDEBUG defined, they rely on assert()."
|
|
#endif
|
|
|
|
#include "../src/compositor.h"
|
|
|
|
struct test {
|
|
const char *name;
|
|
void (*run)(struct weston_compositor *compositor);
|
|
} __attribute__ ((aligned (16)));
|
|
|
|
#define TEST(name) \
|
|
static void name(struct weston_compositor *compositor); \
|
|
\
|
|
const struct test test##name \
|
|
__attribute__ ((section ("test_section"))) = { \
|
|
#name, name \
|
|
}; \
|
|
\
|
|
static void name(struct weston_compositor *compositor)
|
|
|
|
#endif
|