Changeset b66dfd1b9f7587822fd5c8ad7b6d153d72b889c5
- Timestamp:
- 04/19/08 03:22:20
(4 months ago)
- Author:
- Pierre d'Herbemont <pdherbemont@videolan.org>
- git-committer:
- Pierre d'Herbemont <pdherbemont@videolan.org> 1208568140 +0200
- git-parent:
[520ee292ef0488e99426bb17da8e0ad5f416d54d]
- git-author:
- Pierre d'Herbemont <pdherbemont@videolan.org> 1208566302 +0200
- Message:
test: Test meta data support.
Note, this is done even if no meta data module is compiled. A future commit should fix that.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| rd6679da |
rb66dfd1 |
|
| 14 | 14 | test_libvlc_media_list_player \ |
|---|
| 15 | 15 | test_libvlc_media_player \ |
|---|
| | 16 | test_libvlc_meta \ |
|---|
| 16 | 17 | $(NULL) |
|---|
| 17 | | check_DATA = samples/test.sample |
|---|
| | 18 | check_DATA = samples/test.sample samples/meta.sample |
|---|
| 18 | 19 | |
|---|
| 19 | 20 | TESTS = $(check_PROGRAMS) |
|---|
| 20 | 21 | |
|---|
| 21 | | DISTCLEANFILES = samples/test.sample |
|---|
| | 22 | DISTCLEANFILES = samples/test.sample samples/meta.sample |
|---|
| 22 | 23 | |
|---|
| 23 | 24 | # Samples server |
|---|
| … | … | |
| 27 | 28 | mkdir -p `dirname $@` |
|---|
| 28 | 29 | curl $(SAMPLES_SERVER)/avi/Hero-Div3.avi > $@ |
|---|
| | 30 | |
|---|
| | 31 | samples/meta.sample: |
|---|
| | 32 | mkdir -p `dirname $@` |
|---|
| | 33 | curl $(SAMPLES_SERVER)/metadata/id3tag/Wesh-Bonneville.mp3 > $@ |
|---|
| 29 | 34 | |
|---|
| 30 | 35 | CFLAGS_tests = `$(VLC_CONFIG) --cflags libvlc` |
|---|
| … | … | |
| 50 | 55 | test_libvlc_media_player_CFLAGS = $(CFLAGS_tests) |
|---|
| 51 | 56 | |
|---|
| | 57 | test_libvlc_meta_SOURCES = libvlc/meta.c |
|---|
| | 58 | test_libvlc_meta_LDADD = $(top_builddir)/src/libvlc-control.la |
|---|
| | 59 | test_libvlc_meta_CFLAGS = $(CFLAGS_tests) |
|---|
| | 60 | |
|---|
| | 61 | |
|---|
| 52 | 62 | FORCE: |
|---|
| 53 | 63 | @echo "Generated source cannot be phony. Go away." >&2 |
|---|