summaryrefslogtreecommitdiffstats
path: root/server
diff options
context:
space:
mode:
authorMarc-André Lureau <marcandre.lureau@redhat.com>2012-03-01 00:25:36 +0100
committerMarc-André Lureau <marcandre.lureau@redhat.com>2012-03-01 16:24:10 +0100
commit22ee470d4ef45e3dcfa74ebf6adc0816227d16e5 (patch)
tree62e25d2ab44f568306baf73d68888b9e351b3037 /server
parent5d57fb4d1b119119f2b9512321fa8ac40df853a7 (diff)
downloadspice-22ee470d4ef45e3dcfa74ebf6adc0816227d16e5.tar.gz
spice-22ee470d4ef45e3dcfa74ebf6adc0816227d16e5.tar.xz
spice-22ee470d4ef45e3dcfa74ebf6adc0816227d16e5.zip
build-sys: cleanup server/tests/Makefile.am
Diffstat (limited to 'server')
-rw-r--r--server/tests/Makefile.am53
1 files changed, 43 insertions, 10 deletions
diff --git a/server/tests/Makefile.am b/server/tests/Makefile.am
index bc4e00e7..31c8372a 100644
--- a/server/tests/Makefile.am
+++ b/server/tests/Makefile.am
@@ -13,21 +13,54 @@ if SUPPORT_AUTOMATED_TESTS
INCLUDES += -DAUTOMATED_TESTS
endif
-AM_LDFLAGS = $(top_builddir)/server/libspice-server.la
-
-COMMON_BASE=basic_event_loop.c basic_event_loop.h test_util.h ../../common/backtrace.c
+AM_LDFLAGS = \
+ $(top_builddir)/server/libspice-server.la \
+ $(NULL)
+COMMON_BASE = \
+ ../../common/backtrace.c \
+ basic_event_loop.c \
+ basic_event_loop.h \
+ test_util.h \
+ $(NULL)
-noinst_PROGRAMS = test_just_sockets_no_ssl test_empty_success test_fail_on_null_core_interface test_display_no_ssl test_display_streaming test_playback
+noinst_PROGRAMS = \
+ test_display_no_ssl \
+ test_display_streaming \
+ test_empty_success \
+ test_fail_on_null_core_interface \
+ test_just_sockets_no_ssl \
+ test_playback \
+ $(NULL)
-test_display_streaming_SOURCES = test_display_streaming.c test_display_base.c test_display_base.h $(COMMON_BASE)
+test_display_streaming_SOURCES = \
+ $(COMMON_BASE) \
+ test_display_base.c \
+ test_display_base.h \
+ test_display_streaming.c \
+ $(NULL)
-test_display_no_ssl_SOURCES = test_display_no_ssl.c test_display_base.c test_display_base.h $(COMMON_BASE)
+test_display_no_ssl_SOURCES = \
+ $(COMMON_BASE) \
+ test_display_base.c \
+ test_display_base.h \
+ test_display_no_ssl.c \
+ $(NULL)
-test_just_sockets_no_ssl_SOURCES = test_just_sockets_no_ssl.c $(COMMON_BASE)
+test_just_sockets_no_ssl_SOURCES = \
+ $(COMMON_BASE) \
+ test_just_sockets_no_ssl.c \
+ $(NULL)
-test_empty_success_SOURCES = test_empty_success.c
+test_playback_SOURCES = \
+ $(COMMON_BASE) \
+ test_playback.c \
+ $(NULL)
-test_fail_on_null_core_interface_SOURCES = test_fail_on_null_core_interface.c
+test_empty_success_SOURCES = \
+ test_empty_success.c \
+ $(NULL)
-test_playback_SOURCES = test_playback.c $(COMMON_BASE)
+test_fail_on_null_core_interface_SOURCES = \
+ test_fail_on_null_core_interface.c \
+ $(NULL)