X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;ds=sidebyside;f=test%2FMakefile.am;h=7fcef186f55d484a755c263fe9c89eff0df6c995;hb=2203f8384db2d3689e6e611893bf32748f16391d;hp=96ace3f57efdfc7c1d1b8b8f8aba91b9c491bf70;hpb=d3635fbc39a80443a50cac429bb1eaec651ff991;p=vlc diff --git a/test/Makefile.am b/test/Makefile.am index 96ace3f57e..7fcef186f5 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -10,14 +10,20 @@ AUTOMAKE_OPTIONS = subdir-objects check_PROGRAMS = \ test_libvlc_core \ test_libvlc_events \ - $(NULL) -EXTRA_PROGRAMS = \ test_libvlc_media_list \ test_libvlc_media_list_player \ test_libvlc_media_player \ + $(NULL) + +# Disabled test: +# meta: No suitable test file +EXTRA_PROGRAMS = \ test_libvlc_meta \ + test_dummy \ $(NULL) + #check_DATA = samples/test.sample samples/meta.sample +EXTRA_DIST = samples/empty.voc check_HEADERS = libvlc/test.h @@ -36,32 +42,41 @@ samples/meta.sample: mkdir -p `dirname $@` curl $(SAMPLES_SERVER)/metadata/id3tag/Wesh-Bonneville.mp3 > $@ -CFLAGS_tests = `$(VLC_CONFIG) --cflags libvlc` +CFLAGS_tests = `$(VLC_CONFIG) --cflags libvlc` -DSRCDIR=\"$(srcdir)\" +LDFLAGS_tests = -no-install -static test_libvlc_core_SOURCES = libvlc/core.c test_libvlc_core_LDADD = $(top_builddir)/src/libvlc.la test_libvlc_core_CFLAGS = $(CFLAGS_tests) +test_libvlc_core_LDFLAGS = $(LDFLAGS_tests) test_libvlc_events_SOURCES = libvlc/events.c test_libvlc_events_LDADD = $(top_builddir)/src/libvlc.la test_libvlc_events_CFLAGS = $(CFLAGS_tests) +test_libvlc_events_LDFLAGS = $(LDFLAGS_tests) test_libvlc_media_list_player_SOURCES = libvlc/media_list_player.c test_libvlc_media_list_player_LDADD = $(top_builddir)/src/libvlc.la test_libvlc_media_list_player_CFLAGS = $(CFLAGS_tests) +test_libvlc_media_list_player_LDFLAGS = $(LDFLAGS_tests) test_libvlc_media_list_SOURCES = libvlc/media_list.c test_libvlc_media_list_LDADD = $(top_builddir)/src/libvlc.la test_libvlc_media_list_CFLAGS = $(CFLAGS_tests) +test_libvlc_media_list_LDFLAGS = $(LDFLAGS_tests) test_libvlc_media_player_SOURCES = libvlc/media_player.c test_libvlc_media_player_LDADD = $(top_builddir)/src/libvlc.la test_libvlc_media_player_CFLAGS = $(CFLAGS_tests) +test_libvlc_media_player_LDFLAGS = $(LDFLAGS_tests) test_libvlc_meta_SOURCES = libvlc/meta.c test_libvlc_meta_LDADD = $(top_builddir)/src/libvlc.la test_libvlc_meta_CFLAGS = $(CFLAGS_tests) +test_libvlc_meta_LDFLAGS = $(LDFLAGS_tests) +checkall: + $(MAKE) check_PROGRAMS="$(check_PROGRAMS) $(EXTRA_PROGRAMS)" check FORCE: @echo "Generated source cannot be phony. Go away." >&2