mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2025-12-21 01:40:04 +01:00
10 lines
216 B
C
10 lines
216 B
C
#ifndef TESTS_COMMON_H
|
|
#define TESTS_COMMON_H
|
|
|
|
#include "tests.h"
|
|
|
|
#define run_test(func) run_test_in_child(func, #func)
|
|
|
|
void run_test_in_child(int (*func)(void), const char *funcname);
|
|
|
|
#endif /* TESTS_COMMON_H */
|