summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMihail Konev <k.mvc@ya.ru>2017-01-14 15:19:30 +0500
committerAdam Jackson <ajax@redhat.com>2017-01-16 14:40:37 -0500
commit730fd8c05f56da21894691bbd2e7ff37f67b45f4 (patch)
tree11e93b38e3e417aa7e3a4d401ebd37d4b0e9af51 /test
parent704a867f8fb7652a8b7d5569bbe44e188457db4e (diff)
tests: fix --disable-xorg build
Diffstat (limited to 'test')
-rw-r--r--test/Makefile.am107
-rw-r--r--test/tests.c9
2 files changed, 31 insertions, 85 deletions
diff --git a/test/Makefile.am b/test/Makefile.am
index 729402f10..33ac65c37 100644
--- a/test/Makefile.am
+++ b/test/Makefile.am
@@ -7,6 +7,7 @@ tests_CPPFLAGS=
CLEANFILES=
if XORG
+AM_CPPFLAGS += -DXORG_TESTS
# Tests that require at least some DDX functions in order to fully link
# For now, requires xf86 ddx, could be adjusted to use another
if RES
@@ -54,6 +55,16 @@ AM_CPPFLAGS += \
tests_CPPFLAGS += $(AM_CPPFLAGS)
endif
+tests_LDADD = $(XORG_SYS_LIBS) $(XSERVER_SYS_LIBS) $(GLX_SYS_LIBS)
+
+tests_SOURCES = \
+ tests-common.c \
+ tests.c \
+ list.c \
+ string.c
+
+if HAVE_LD_WRAP
+
tests_LDFLAGS = \
-Wl,-wrap,dixLookupWindow \
-Wl,-wrap,dixLookupClient \
@@ -64,27 +75,8 @@ tests_LDFLAGS = \
-Wl,-wrap,GrabButton \
$()
-tests_LDADD = $(XORG_SYS_LIBS) $(XSERVER_SYS_LIBS) $(GLX_SYS_LIBS)
-
-tests_SOURCES = \
- tests-common.c \
- fixes.c \
- input.c \
- list.c \
- misc.c \
- signal-logging.c \
- string.c \
- touch.c \
- xfree86.c \
- test_xkb.c \
- xtest.c \
- $(RES_SRCS) \
- tests.c
-
-if HAVE_LD_WRAP
-
+if XORG
tests_CPPFLAGS += -DLDWRAP_TESTS
-
tests_SOURCES += \
xi1/protocol-xchangedevicecontrol.c \
xi2/protocol-common.c \
@@ -99,6 +91,7 @@ tests_SOURCES += \
xi2/protocol-xiwarppointer.c \
xi2/protocol-eventconvert.c \
xi2/xi2.c
+endif
else !HAVE_LD_WRAP
@@ -122,9 +115,20 @@ xi2-tests:
endif !HAVE_LD_WRAP
+if XORG
+
tests_LDADD += $(XSERVER_LIBS)
-if XORG
+tests_SOURCES += \
+ $(RES_SRCS) \
+ fixes.c \
+ input.c \
+ misc.c \
+ signal-logging.c \
+ touch.c \
+ xfree86.c \
+ test_xkb.c \
+ xtest.c
nodist_tests_SOURCES = sdksyms.c
@@ -160,66 +164,7 @@ if DRI3
tests_LDADD += $(top_builddir)/dri3/libdri3.la
endif
-else !XORG
-
-nodist_tests_SOURCES = \
- ddxstubs.c \
- $(top_srcdir)/mi/miinitext.c
-
-tests_LDADD += \
- $(top_builddir)/damageext/libdamageext.la \
- $(top_builddir)/fb/libfb.la \
- $(top_builddir)/fb/libwfb.la \
- $(top_builddir)/miext/damage/libdamage.la \
- $(top_builddir)/miext/sync/libsync.la \
- $(top_builddir)/randr/librandr.la \
- $(top_builddir)/render/librender.la \
- $(top_builddir)/Xext/libXext.la \
- $(top_builddir)/Xext/libXextdpmsstubs.la \
- $(top_builddir)/Xext/libXvidmode.la \
- $(top_builddir)/Xi/libXi.la \
- $(top_builddir)/Xi/libXistubs.la \
- $(top_builddir)/xfixes/libxfixes.la \
- $(top_builddir)/xkb/libxkb.la \
- $(top_builddir)/xkb/libxkbstubs.la
-
-if COMPOSITE
-tests_LDADD += \
- $(top_builddir)/composite/libcomposite.la
-endif
-
-if DBE
-tests_LDADD += \
- $(top_builddir)/dbe/libdbe.la
-endif
-
-if GLX
-tests_LDADD += \
- $(top_builddir)/glx/libglx.la
-endif
-
-if RECORD
-tests_LDADD += \
- $(top_builddir)/record/librecord.la
-endif
-
-if DRI3
-tests_LDADD += \
- $(top_builddir)/dri3/libdri3.la
-endif
-
-if XQUARTZ
-tests_LDADD += \
- $(top_builddir)/miext/rootless/librootless.la
-tests_LDADD += -lXplugin
-endif
-
-if XWIN_MULTIWINDOWEXTWM
-tests_LDADD += \
- $(top_builddir)/miext/rootless/librootless.la
-endif
-
-endif !XORG
+endif XORG
tests_DEPENDENCIES = $(tests_LDADD)
endif ENABLE_UNIT_TESTS
diff --git a/test/tests.c b/test/tests.c
index add51bd48..45b390af2 100644
--- a/test/tests.c
+++ b/test/tests.c
@@ -5,21 +5,22 @@
int
main(int argc, char **argv)
{
- run_test(fixes_test);
+ run_test(list_test);
+ run_test(string_test);
+#if XORG_TESTS
+ run_test(fixes_test);
#ifdef RES_TESTS
run_test(hashtabletest_test);
#endif
-
run_test(input_test);
- run_test(list_test);
run_test(misc_test);
run_test(signal_logging_test);
- run_test(string_test);
run_test(touch_test);
run_test(xfree86_test);
run_test(xkb_test);
run_test(xtest_test);
+#endif
#ifdef LDWRAP_TESTS
run_test(protocol_xchangedevicecontrol_test);