diff --git a/test/tests-common.c b/test/tests-common.c new file mode 100644 index 000000000..686852827 --- /dev/null +++ b/test/tests-common.c @@ -0,0 +1,33 @@ +#include +#include +#include +#include +#include + +#include "tests-common.h" + +void +run_test_in_child(int (*func)(void), const char *funcname) +{ + int cpid; + int csts; + int exit_code = -1; + + printf("\n---------------------\n%s...\n", funcname); + cpid = fork(); + if (cpid) { + waitpid(cpid, &csts, 0); + if (!WIFEXITED(csts)) + goto child_failed; + exit_code = WEXITSTATUS(csts); + if (exit_code == 0) + printf(" Pass\n"); + else { +child_failed: + printf(" FAIL\n"); + exit(exit_code); + } + } else { + exit(func()); + } +} diff --git a/test/tests-common.h b/test/tests-common.h new file mode 100644 index 000000000..f0197ad21 --- /dev/null +++ b/test/tests-common.h @@ -0,0 +1,8 @@ +#ifndef TESTS_COMMON_H +#define TESTS_COMMON_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 */ diff --git a/test/tests.h b/test/tests.h new file mode 100644 index 000000000..7fa5ac210 --- /dev/null +++ b/test/tests.h @@ -0,0 +1,6 @@ +#ifndef TESTS_H +#define TESTS_H + +int protocol_xchangedevicecontrol_test(void); + +#endif /* TESTS_H */ diff --git a/test/xi1/.gitignore b/test/xi1/.gitignore index c1b9024ee..2b29f2764 100644 --- a/test/xi1/.gitignore +++ b/test/xi1/.gitignore @@ -1 +1 @@ -protocol-xchangedevicecontrol +tests diff --git a/test/xi1/Makefile.am b/test/xi1/Makefile.am index b7060e7d4..7a054dd80 100644 --- a/test/xi1/Makefile.am +++ b/test/xi1/Makefile.am @@ -1,27 +1,36 @@ if ENABLE_UNIT_TESTS if HAVE_LD_WRAP -noinst_PROGRAMS = \ - protocol-xchangedevicecontrol +noinst_PROGRAMS = tests + +TESTS = tests -TESTS=$(noinst_PROGRAMS) TESTS_ENVIRONMENT = $(XORG_MALLOC_DEBUG_ENV) -AM_CFLAGS = $(DIX_CFLAGS) @XORG_CFLAGS@ -AM_CPPFLAGS = @XORG_INCS@ -I$(srcdir)/../xi2 -TEST_LDADD=../libxservertest.la $(XORG_SYS_LIBS) $(XSERVER_SYS_LIBS) $(GLX_SYS_LIBS) -COMMON_SOURCES=$(srcdir)/../xi2/protocol-common.c -COMMON_LD_FLAGS = -Wl,-wrap,dixLookupWindow -Wl,-wrap,dixLookupClient +tests_CFLAGS = $(DIX_CFLAGS) @XORG_CFLAGS@ +tests_CPPFLAGS = \ + @XORG_INCS@ \ + -I$(srcdir)/.. \ + -I$(srcdir)/../xi2 \ + $() + +tests_LDFLAGS = \ + -Wl,-wrap,dixLookupWindow \ + -Wl,-wrap,dixLookupClient \ + -Wl,-wrap,WriteToClient \ + $() + +tests_LDADD =../libxservertest.la $(XORG_SYS_LIBS) $(XSERVER_SYS_LIBS) $(GLX_SYS_LIBS) + +tests_SOURCES = \ + $(srcdir)/../tests-common.c \ + $(srcdir)/../xi2/protocol-common.c \ + protocol-xchangedevicecontrol.c \ + tests.c if SPECIAL_DTRACE_OBJECTS -TEST_LDADD += $(OS_LIB) $(DIX_LIB) +tests_LDADD += $(OS_LIB) $(DIX_LIB) endif -protocol_xchangedevicecontrol_LDADD=$(TEST_LDADD) - -protocol_xchangedevicecontrol_LDFLAGS=$(COMMON_LD_FLAGS) -Wl,-wrap,WriteToClient - -protocol_xchangedevicecontrol_SOURCES=$(COMMON_SOURCES) protocol-xchangedevicecontrol.c - else # Print that xi1-tests were skipped (exit code 77 for automake test harness) TESTS = xi1-tests diff --git a/test/xi1/protocol-xchangedevicecontrol.c b/test/xi1/protocol-xchangedevicecontrol.c index 64d2ca29b..57a15c407 100644 --- a/test/xi1/protocol-xchangedevicecontrol.c +++ b/test/xi1/protocol-xchangedevicecontrol.c @@ -113,7 +113,7 @@ test_ChangeDeviceControl(void) } int -main(int argc, char **argv) +protocol_xchangedevicecontrol_test(void) { init_simple(); diff --git a/test/xi1/tests.c b/test/xi1/tests.c new file mode 100644 index 000000000..df4638dc9 --- /dev/null +++ b/test/xi1/tests.c @@ -0,0 +1,11 @@ +#include +#include "tests.h" +#include "tests-common.h" + +int +main(int argc, char **argv) +{ + run_test(protocol_xchangedevicecontrol_test); + + return 0; +} diff --git a/test/xi2/Makefile.am b/test/xi2/Makefile.am index 9231e92db..49aaebb36 100644 --- a/test/xi2/Makefile.am +++ b/test/xi2/Makefile.am @@ -17,7 +17,10 @@ TESTS=$(noinst_PROGRAMS) TESTS_ENVIRONMENT = $(XORG_MALLOC_DEBUG_ENV) AM_CFLAGS = $(DIX_CFLAGS) @XORG_CFLAGS@ -AM_CPPFLAGS = @XORG_INCS@ +AM_CPPFLAGS = \ + @XORG_INCS@ \ + -I$(srcdir)/.. + TEST_LDADD=../libxservertest.la $(XORG_SYS_LIBS) $(XSERVER_SYS_LIBS) $(GLX_SYS_LIBS) COMMON_SOURCES=protocol-common.h protocol-common.c COMMON_LD_FLAGS= -Wl,-wrap,dixLookupWindow -Wl,-wrap,dixLookupClient diff --git a/test/xi2/protocol-common.h b/test/xi2/protocol-common.h index f8504787f..7190ef0dd 100644 --- a/test/xi2/protocol-common.h +++ b/test/xi2/protocol-common.h @@ -30,6 +30,8 @@ #include "exevents.h" #include +#include "tests.h" + #ifndef PROTOCOL_COMMON_H #define PROTOCOL_COMMON_H