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