spice/server/tests/Makefile.am
Alon Levy 9002d3f005 server/tests: add test_display_no_ssl
updates taken from spice vga mode updates, i.e. non cacheable, glz compressed
(depends on whatever settings you apply to the server) opaque draw operations.
 + completed the SpiceCoreInterface implementation (timers)

v1->v2:
 removed test_util.c (Hans)
 replaced mallocz with calloc (Hans)
2010-11-30 21:03:14 +02:00

31 lines
838 B
Makefile

NULL =
INCLUDES = \
-I.. \
-I../../common \
$(PROTOCOL_CFLAGS) \
$(SPICE_NONPKGCONFIG_CFLAGS) \
$(NULL)
LDFLAGS = -L../.libs -lspice-server
noinst_PROGRAMS = test_just_sockets_no_ssl test_empty_success test_fail_on_null_core_interface test_display_no_ssl
test_display_no_ssl_SOURCES = test_display_no_ssl.c basic_event_loop.c
test_display_no_ssl_LDFLAGS = $(LDFLAGS)
test_just_sockets_no_ssl_SOURCES = test_just_sockets_no_ssl.c basic_event_loop.c basic_event_loop.h
test_just_sockets_no_ssl_LDFLAGS = $(LDFLAGS)
test_empty_success_SOURCES = test_empty_success.c
test_empty_success_LDFLAGS = $(LDFLAGS)
test_fail_on_null_core_interface_SOURCES = test_fail_on_null_core_interface.c
test_fail_on_null_core_interface_LDFLAGS = $(LDFLAGS)