tests: make sure that the default rule builds all tests

The default rule being "all", it builds noinst_PROGRAMS but not
check_PROGRAMS. Let's build all the tests by default.

Signed-off-by: Marc-André Lureau <marcandre.lureau@gmail.com>
Acked-by: Frediano Ziglio <fziglio@redhat.com>
This commit is contained in:
Marc-Andre Lureau 2016-01-22 18:14:03 +01:00 committed by Frediano Ziglio
parent 0f4dd2730b
commit 15c908ef25

View File

@ -35,6 +35,13 @@ LDADD = \
$(SPICE_NONPKGCONFIG_LIBS) \
$(NULL)
TESTS = \
stat_test \
stream-test \
test-loop \
test-qxl-parsing \
$(NULL)
noinst_PROGRAMS = \
test_display_no_ssl \
test_display_streaming \
@ -47,16 +54,7 @@ noinst_PROGRAMS = \
test_vdagent \
test_display_width_stride \
spice-server-replay \
stream-test \
stat_test \
test-loop \
$(NULL)
TESTS = \
stat_test \
test-qxl-parsing \
stream-test \
test-loop \
$(TESTS) \
$(NULL)
check_PROGRAMS = $(TESTS)