X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=test%2FMakefile.am;h=c1f089daae4c2e4f2ae7b3c0692d9d69f5faf709;hb=24719ba3c36b465427c2a1f2d8ec0f380472f5c1;hp=8703d8fe51283da1afaf38613de7d8c62101c5a3;hpb=ec6a7b8ec1fc9f070d1d5242836b1d643f9f2dd8;p=vlc diff --git a/test/Makefile.am b/test/Makefile.am index 8703d8fe51..c1f089daae 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -4,6 +4,11 @@ AUTOMAKE_OPTIONS = subdir-objects +extra_check_verbose = $(extra_check_verbose_$(V)) +extra_check_verbose_ = $(extra_check_flags__$(AM_DEFAULT_VERBOSITY)) +extra_check_verbose_0 = @echo TEST $@ +extra_check_verbose__0 = $(extra_check_verbose_0) + ############################################################################### # Unit/regression test ############################################################################### @@ -12,15 +17,21 @@ check_PROGRAMS = \ test_libvlc_events \ test_libvlc_media_list \ test_libvlc_media_list_player \ - $(NULL) -EXTRA_PROGRAMS = \ test_libvlc_media_player \ + test_src_misc_variables \ + $(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 +check_HEADERS = libvlc/test.h libvlc/libvlc_additions.h TESTS = $(check_PROGRAMS) @@ -70,6 +81,11 @@ test_libvlc_meta_LDADD = $(top_builddir)/src/libvlc.la test_libvlc_meta_CFLAGS = $(CFLAGS_tests) test_libvlc_meta_LDFLAGS = $(LDFLAGS_tests) +test_src_misc_variables_SOURCES = src/misc/variables.c +test_src_misc_variables_LDADD = $(top_builddir)/src/libvlc.la +test_src_misc_variables_CFLAGS = $(CFLAGS_tests) +test_src_misc_variables_LDFLAGS = $(LDFLAGS_tests) + checkall: $(MAKE) check_PROGRAMS="$(check_PROGRAMS) $(EXTRA_PROGRAMS)" check