]> git.sesse.net Git - vlc/blob - test/Makefile.am
test: Expanded and passing media_list_player queue item tests.
[vlc] / test / Makefile.am
1 ###############################################################################
2 # Automake targets and declarations
3 ###############################################################################
4
5 AUTOMAKE_OPTIONS = subdir-objects
6
7 extra_check_verbose = $(extra_check_verbose_$(V))
8 extra_check_verbose_ = $(extra_check_flags__$(AM_DEFAULT_VERBOSITY))
9 extra_check_verbose_0 = @echo TEST $@
10 extra_check_verbose__0 = $(extra_check_verbose_0)
11
12 ###############################################################################
13 # Unit/regression test
14 ###############################################################################
15 check_PROGRAMS = \
16         test_libvlc_core \
17         test_libvlc_events \
18         test_libvlc_media_list \
19         test_libvlc_media_list_player \
20         test_libvlc_media_player \
21         test_src_misc_variables \
22         $(NULL)
23
24 # Disabled test:
25 # meta: No suitable test file
26 EXTRA_PROGRAMS = \
27         test_libvlc_meta \
28         test_dummy \
29         $(NULL)
30
31 #check_DATA = samples/test.sample samples/meta.sample
32 EXTRA_DIST = samples/empty.voc
33
34 check_HEADERS = libvlc/test.h libvlc/libvlc_additions.h
35
36 TESTS = $(check_PROGRAMS)
37
38 DISTCLEANFILES = samples/test.sample samples/meta.sample
39
40 # Samples server
41 SAMPLES_SERVER=http://streams.videolan.org/streams-videolan/reference
42
43 samples/test.sample:
44         mkdir -p `dirname $@`
45         curl $(SAMPLES_SERVER)/avi/Hero-Div3.avi > $@
46
47 samples/meta.sample:
48         mkdir -p `dirname $@`
49         curl $(SAMPLES_SERVER)/metadata/id3tag/Wesh-Bonneville.mp3 > $@
50
51 CFLAGS_tests = `$(VLC_CONFIG) --cflags libvlc` -DSRCDIR=\"$(srcdir)\"
52 LDFLAGS_tests = -no-install -static
53
54 test_libvlc_core_SOURCES = libvlc/core.c
55 test_libvlc_core_LDADD = $(top_builddir)/src/libvlc.la
56 test_libvlc_core_CFLAGS = $(CFLAGS_tests)
57 test_libvlc_core_LDFLAGS = $(LDFLAGS_tests)
58
59 test_libvlc_events_SOURCES = libvlc/events.c
60 test_libvlc_events_LDADD = $(top_builddir)/src/libvlc.la
61 test_libvlc_events_CFLAGS = $(CFLAGS_tests)
62 test_libvlc_events_LDFLAGS = $(LDFLAGS_tests)
63
64 test_libvlc_media_list_player_SOURCES = libvlc/media_list_player.c
65 test_libvlc_media_list_player_LDADD = $(top_builddir)/src/libvlc.la
66 test_libvlc_media_list_player_CFLAGS = $(CFLAGS_tests)
67 test_libvlc_media_list_player_LDFLAGS = $(LDFLAGS_tests)
68
69 test_libvlc_media_list_SOURCES = libvlc/media_list.c
70 test_libvlc_media_list_LDADD = $(top_builddir)/src/libvlc.la
71 test_libvlc_media_list_CFLAGS = $(CFLAGS_tests)
72 test_libvlc_media_list_LDFLAGS = $(LDFLAGS_tests)
73
74 test_libvlc_media_player_SOURCES = libvlc/media_player.c
75 test_libvlc_media_player_LDADD = $(top_builddir)/src/libvlc.la
76 test_libvlc_media_player_CFLAGS = $(CFLAGS_tests)
77 test_libvlc_media_player_LDFLAGS = $(LDFLAGS_tests)
78
79 test_libvlc_meta_SOURCES = libvlc/meta.c
80 test_libvlc_meta_LDADD = $(top_builddir)/src/libvlc.la
81 test_libvlc_meta_CFLAGS = $(CFLAGS_tests)
82 test_libvlc_meta_LDFLAGS = $(LDFLAGS_tests)
83
84 test_src_misc_variables_SOURCES = src/misc/variables.c
85 test_src_misc_variables_LDADD = $(top_builddir)/src/libvlc.la
86 test_src_misc_variables_CFLAGS = $(CFLAGS_tests)
87 test_src_misc_variables_LDFLAGS = $(LDFLAGS_tests)
88
89 checkall:
90         $(MAKE) check_PROGRAMS="$(check_PROGRAMS) $(EXTRA_PROGRAMS)" check
91
92 FORCE:
93         @echo "Generated source cannot be phony. Go away." >&2
94         @exit 1
95
96 .PHONY: FORCE