tests: Fix guards for ld -wrap
Fixes XQuartz build.
Regressed-in: 23f6dbc96e
Reviewed-by: Adam Jackson <ajax@redhat.com>
Signed-off-by: Mihail Konev <k.mvc@ya.ru>
This commit is contained in:
parent
d8161aeb50
commit
fde5cd7848
127
test/Makefile.am
127
test/Makefile.am
|
@ -6,14 +6,11 @@ AM_CPPFLAGS = $(XORG_INCS)
|
||||||
tests_CPPFLAGS=
|
tests_CPPFLAGS=
|
||||||
CLEANFILES=
|
CLEANFILES=
|
||||||
|
|
||||||
if XORG
|
tests_SOURCES = \
|
||||||
# Tests that require at least some DDX functions in order to fully link
|
tests-common.c \
|
||||||
# For now, requires xf86 ddx, could be adjusted to use another
|
list.c \
|
||||||
if RES
|
string.c \
|
||||||
RES_SRCS = hashtabletest.c
|
tests.c
|
||||||
AM_CPPFLAGS += -DRES_TESTS
|
|
||||||
endif
|
|
||||||
endif
|
|
||||||
|
|
||||||
noinst_PROGRAMS = simple-xinit tests
|
noinst_PROGRAMS = simple-xinit tests
|
||||||
|
|
||||||
|
@ -41,7 +38,13 @@ TESTS_ENVIRONMENT = \
|
||||||
$(XORG_MALLOC_DEBUG_ENV) \
|
$(XORG_MALLOC_DEBUG_ENV) \
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
||||||
|
tests_LDADD =
|
||||||
|
|
||||||
if XORG
|
if XORG
|
||||||
|
|
||||||
|
# Tests that require at least some DDX functions in order to fully link
|
||||||
|
# For now, requires xf86 ddx, could be adjusted to use another
|
||||||
|
|
||||||
AM_CPPFLAGS += \
|
AM_CPPFLAGS += \
|
||||||
-I$(srcdir)/xi1 \
|
-I$(srcdir)/xi1 \
|
||||||
-I$(srcdir)/xi2 \
|
-I$(srcdir)/xi2 \
|
||||||
|
@ -52,39 +55,30 @@ AM_CPPFLAGS += \
|
||||||
-I$(top_srcdir)/hw/xfree86/ramdac -I$(top_srcdir)/hw/xfree86/dri \
|
-I$(top_srcdir)/hw/xfree86/ramdac -I$(top_srcdir)/hw/xfree86/dri \
|
||||||
-I$(top_srcdir)/hw/xfree86/dri2 -I$(top_srcdir)/dri3
|
-I$(top_srcdir)/hw/xfree86/dri2 -I$(top_srcdir)/dri3
|
||||||
tests_CPPFLAGS += $(AM_CPPFLAGS)
|
tests_CPPFLAGS += $(AM_CPPFLAGS)
|
||||||
endif
|
|
||||||
|
|
||||||
tests_LDFLAGS = \
|
tests_SOURCES += \
|
||||||
-Wl,-wrap,dixLookupWindow \
|
|
||||||
-Wl,-wrap,dixLookupClient \
|
|
||||||
-Wl,-wrap,WriteToClient \
|
|
||||||
-Wl,-wrap,dixLookupWindow \
|
|
||||||
-Wl,-wrap,XISetEventMask \
|
|
||||||
-Wl,-wrap,AddResource \
|
|
||||||
-Wl,-wrap,GrabButton \
|
|
||||||
$()
|
|
||||||
|
|
||||||
tests_LDADD =
|
|
||||||
|
|
||||||
tests_SOURCES = \
|
|
||||||
tests-common.c \
|
|
||||||
fixes.c \
|
fixes.c \
|
||||||
input.c \
|
input.c \
|
||||||
list.c \
|
|
||||||
misc.c \
|
misc.c \
|
||||||
signal-logging.c \
|
signal-logging.c \
|
||||||
string.c \
|
|
||||||
touch.c \
|
touch.c \
|
||||||
xfree86.c \
|
xfree86.c \
|
||||||
test_xkb.c \
|
test_xkb.c \
|
||||||
xtest.c \
|
xtest.c
|
||||||
$(RES_SRCS) \
|
tests_CPPFLAGS += -DXORG_TESTS
|
||||||
tests.c
|
|
||||||
|
if RES
|
||||||
|
tests_SOURCES += hashtabletest.c
|
||||||
|
tests_CPPFLAGS += -DRES_TESTS
|
||||||
|
endif
|
||||||
|
|
||||||
|
endif XORG
|
||||||
|
|
||||||
if HAVE_LD_WRAP
|
if HAVE_LD_WRAP
|
||||||
|
|
||||||
tests_CPPFLAGS += -DLDWRAP_TESTS
|
tests_CPPFLAGS += -DLDWRAP_TESTS
|
||||||
|
|
||||||
|
if XORG
|
||||||
tests_SOURCES += \
|
tests_SOURCES += \
|
||||||
xi1/protocol-xchangedevicecontrol.c \
|
xi1/protocol-xchangedevicecontrol.c \
|
||||||
xi2/protocol-common.c \
|
xi2/protocol-common.c \
|
||||||
|
@ -100,6 +94,17 @@ tests_SOURCES += \
|
||||||
xi2/protocol-eventconvert.c \
|
xi2/protocol-eventconvert.c \
|
||||||
xi2/xi2.c
|
xi2/xi2.c
|
||||||
|
|
||||||
|
tests_LDFLAGS = \
|
||||||
|
-Wl,-wrap,dixLookupWindow \
|
||||||
|
-Wl,-wrap,dixLookupClient \
|
||||||
|
-Wl,-wrap,WriteToClient \
|
||||||
|
-Wl,-wrap,dixLookupWindow \
|
||||||
|
-Wl,-wrap,XISetEventMask \
|
||||||
|
-Wl,-wrap,AddResource \
|
||||||
|
-Wl,-wrap,GrabButton \
|
||||||
|
$()
|
||||||
|
endif XORG
|
||||||
|
|
||||||
else !HAVE_LD_WRAP
|
else !HAVE_LD_WRAP
|
||||||
|
|
||||||
# Print that xi1-tests were skipped (exit code 77 for automake test harness)
|
# Print that xi1-tests were skipped (exit code 77 for automake test harness)
|
||||||
|
@ -122,8 +127,6 @@ xi2-tests:
|
||||||
|
|
||||||
endif !HAVE_LD_WRAP
|
endif !HAVE_LD_WRAP
|
||||||
|
|
||||||
tests_LDADD += $(XSERVER_LIBS)
|
|
||||||
|
|
||||||
if XORG
|
if XORG
|
||||||
|
|
||||||
nodist_tests_SOURCES = sdksyms.c
|
nodist_tests_SOURCES = sdksyms.c
|
||||||
|
@ -140,7 +143,8 @@ tests_LDADD += \
|
||||||
$(top_builddir)/hw/xfree86/i2c/libi2c.la \
|
$(top_builddir)/hw/xfree86/i2c/libi2c.la \
|
||||||
$(top_builddir)/hw/xfree86/dixmods/libxorgxkb.la \
|
$(top_builddir)/hw/xfree86/dixmods/libxorgxkb.la \
|
||||||
$(top_builddir)/Xext/libXvidmode.la \
|
$(top_builddir)/Xext/libXvidmode.la \
|
||||||
@XORG_LIBS@
|
$(XSERVER_LIBS) \
|
||||||
|
$(XORG_LIBS)
|
||||||
|
|
||||||
if !SPECIAL_DTRACE_OBJECTS
|
if !SPECIAL_DTRACE_OBJECTS
|
||||||
tests_LDADD += $(top_builddir)/os/libos.la
|
tests_LDADD += $(top_builddir)/os/libos.la
|
||||||
|
@ -164,66 +168,7 @@ if DRI3
|
||||||
tests_LDADD += $(top_builddir)/dri3/libdri3.la
|
tests_LDADD += $(top_builddir)/dri3/libdri3.la
|
||||||
endif
|
endif
|
||||||
|
|
||||||
else !XORG
|
endif 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
|
|
||||||
|
|
||||||
# GNU LD scans only in one direction, add the following dependencies at the end
|
# GNU LD scans only in one direction, add the following dependencies at the end
|
||||||
# so as they get picked up by the previously-linked libraries
|
# so as they get picked up by the previously-linked libraries
|
||||||
|
|
19
test/tests.c
19
test/tests.c
|
@ -5,22 +5,23 @@
|
||||||
int
|
int
|
||||||
main(int argc, char **argv)
|
main(int argc, char **argv)
|
||||||
{
|
{
|
||||||
run_test(fixes_test);
|
|
||||||
|
|
||||||
#ifdef RES_TESTS
|
|
||||||
run_test(hashtabletest_test);
|
|
||||||
#endif
|
|
||||||
|
|
||||||
run_test(input_test);
|
|
||||||
run_test(list_test);
|
run_test(list_test);
|
||||||
|
run_test(string_test);
|
||||||
|
|
||||||
|
#ifdef XORG_TESTS
|
||||||
|
run_test(fixes_test);
|
||||||
|
run_test(input_test);
|
||||||
run_test(misc_test);
|
run_test(misc_test);
|
||||||
run_test(signal_logging_test);
|
run_test(signal_logging_test);
|
||||||
run_test(string_test);
|
|
||||||
run_test(touch_test);
|
run_test(touch_test);
|
||||||
run_test(xfree86_test);
|
run_test(xfree86_test);
|
||||||
run_test(xkb_test);
|
run_test(xkb_test);
|
||||||
run_test(xtest_test);
|
run_test(xtest_test);
|
||||||
|
|
||||||
|
#ifdef RES_TESTS
|
||||||
|
run_test(hashtabletest_test);
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifdef LDWRAP_TESTS
|
#ifdef LDWRAP_TESTS
|
||||||
run_test(protocol_xchangedevicecontrol_test);
|
run_test(protocol_xchangedevicecontrol_test);
|
||||||
|
|
||||||
|
@ -37,5 +38,7 @@ main(int argc, char **argv)
|
||||||
run_test(xi2_test);
|
run_test(xi2_test);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#endif /* XORG_TESTS */
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue